diff --git a/eng/mgmt/mgmtmetadata/storage_resource-manager.txt b/eng/mgmt/mgmtmetadata/storage_resource-manager.txt
index c069e56e9ab1..699c9278b862 100644
--- a/eng/mgmt/mgmtmetadata/storage_resource-manager.txt
+++ b/eng/mgmt/mgmtmetadata/storage_resource-manager.txt
@@ -4,11 +4,11 @@ Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/storage/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp.output-folder=C:\code\srpsdk\sdk\storage\Microsoft.Azure.Management.Storage\src\Generated
-2019-10-22 03:30:43 UTC
+2019-11-22 07:15:56 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
-Commit: 5265b9205331da0a55f2d17eb6b436b7d67d1f09
+Commit: ef5bff591188a232471a8f81d7bc02c7c9f7d68d
AutoRest information
Requested version: latest
-Bootstrapper version: autorest@2.0.4283
+Bootstrapper version: autorest@2.0.4407
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/changelog.md b/sdk/storage/Microsoft.Azure.Management.Storage/changelog.md
index c8273e583bf2..04c251002fe0 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/changelog.md
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/changelog.md
@@ -1,5 +1,11 @@
## Microsoft.Azure.Management.Storage release notes
+### Changes in 14.1.0
+
+- Change the maximum limitation for share size from 5120(GB) too 100000(GB)
+- Add Sku to Blob Service Properties
+- Support Share Delete Retention Policy on File Service Properties
+
### Changes in 14.0.0
- StorageAccounts.GetProperties() will also return PrivateEndpointConnections of the Stroage account
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileServicesOperations.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileServicesOperations.cs
index 604e36859ce9..0355a2e192b3 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileServicesOperations.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileServicesOperations.cs
@@ -308,6 +308,9 @@ internal FileServicesOperations(StorageManagementClient client)
/// the request body, all CORS rules will be deleted, and CORS will be disabled
/// for the File service.
///
+ ///
+ /// The file service properties for share soft delete.
+ ///
///
/// Headers that will be added to request.
///
@@ -329,7 +332,7 @@ internal FileServicesOperations(StorageManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task> SetServicePropertiesWithHttpMessagesAsync(string resourceGroupName, string accountName, CorsRules cors = default(CorsRules), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> SetServicePropertiesWithHttpMessagesAsync(string resourceGroupName, string accountName, CorsRules cors = default(CorsRules), DeleteRetentionPolicy shareDeleteRetentionPolicy = default(DeleteRetentionPolicy), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (resourceGroupName == null)
{
@@ -387,11 +390,16 @@ internal FileServicesOperations(StorageManagementClient client)
throw new ValidationException(ValidationRules.MinLength, "Client.SubscriptionId", 1);
}
}
+ if (shareDeleteRetentionPolicy != null)
+ {
+ shareDeleteRetentionPolicy.Validate();
+ }
string fileServicesName = "default";
FileServiceProperties parameters = new FileServiceProperties();
- if (cors != null)
+ if (cors != null || shareDeleteRetentionPolicy != null)
{
parameters.Cors = cors;
+ parameters.ShareDeleteRetentionPolicy = shareDeleteRetentionPolicy;
}
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileServicesOperationsExtensions.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileServicesOperationsExtensions.cs
index ed383c8eccbf..0a5f74d13bd2 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileServicesOperationsExtensions.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileServicesOperationsExtensions.cs
@@ -89,9 +89,12 @@ public static FileServiceItems List(this IFileServicesOperations operations, str
/// the request body, all CORS rules will be deleted, and CORS will be disabled
/// for the File service.
///
- public static FileServiceProperties SetServiceProperties(this IFileServicesOperations operations, string resourceGroupName, string accountName, CorsRules cors = default(CorsRules))
+ ///
+ /// The file service properties for share soft delete.
+ ///
+ public static FileServiceProperties SetServiceProperties(this IFileServicesOperations operations, string resourceGroupName, string accountName, CorsRules cors = default(CorsRules), DeleteRetentionPolicy shareDeleteRetentionPolicy = default(DeleteRetentionPolicy))
{
- return operations.SetServicePropertiesAsync(resourceGroupName, accountName, cors).GetAwaiter().GetResult();
+ return operations.SetServicePropertiesAsync(resourceGroupName, accountName, cors, shareDeleteRetentionPolicy).GetAwaiter().GetResult();
}
///
@@ -116,12 +119,15 @@ public static FileServiceItems List(this IFileServicesOperations operations, str
/// the request body, all CORS rules will be deleted, and CORS will be disabled
/// for the File service.
///
+ ///
+ /// The file service properties for share soft delete.
+ ///
///
/// The cancellation token.
///
- public static async Task SetServicePropertiesAsync(this IFileServicesOperations operations, string resourceGroupName, string accountName, CorsRules cors = default(CorsRules), CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task SetServicePropertiesAsync(this IFileServicesOperations operations, string resourceGroupName, string accountName, CorsRules cors = default(CorsRules), DeleteRetentionPolicy shareDeleteRetentionPolicy = default(DeleteRetentionPolicy), CancellationToken cancellationToken = default(CancellationToken))
{
- using (var _result = await operations.SetServicePropertiesWithHttpMessagesAsync(resourceGroupName, accountName, cors, null, cancellationToken).ConfigureAwait(false))
+ using (var _result = await operations.SetServicePropertiesWithHttpMessagesAsync(resourceGroupName, accountName, cors, shareDeleteRetentionPolicy, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileSharesOperations.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileSharesOperations.cs
index 38501347fae4..f3d1d0514d31 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileSharesOperations.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileSharesOperations.cs
@@ -332,7 +332,8 @@ internal FileSharesOperations(StorageManagementClient client)
///
///
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
- /// less than or equal to 5TB (5120).
+ /// less than or equal to 5TB (5120). For Large File Shares, the maximum size
+ /// is 100000.
///
///
/// Headers that will be added to request.
@@ -428,9 +429,9 @@ internal FileSharesOperations(StorageManagementClient client)
throw new ValidationException(ValidationRules.MinLength, "Client.SubscriptionId", 1);
}
}
- if (shareQuota > 5120)
+ if (shareQuota > 100000)
{
- throw new ValidationException(ValidationRules.InclusiveMaximum, "shareQuota", 5120);
+ throw new ValidationException(ValidationRules.InclusiveMaximum, "shareQuota", 100000);
}
if (shareQuota < 1)
{
@@ -642,7 +643,8 @@ internal FileSharesOperations(StorageManagementClient client)
///
///
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
- /// less than or equal to 5TB (5120).
+ /// less than or equal to 5TB (5120). For Large File Shares, the maximum size
+ /// is 100000.
///
///
/// Headers that will be added to request.
@@ -738,9 +740,9 @@ internal FileSharesOperations(StorageManagementClient client)
throw new ValidationException(ValidationRules.MinLength, "Client.SubscriptionId", 1);
}
}
- if (shareQuota > 5120)
+ if (shareQuota > 100000)
{
- throw new ValidationException(ValidationRules.InclusiveMaximum, "shareQuota", 5120);
+ throw new ValidationException(ValidationRules.InclusiveMaximum, "shareQuota", 100000);
}
if (shareQuota < 1)
{
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileSharesOperationsExtensions.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileSharesOperationsExtensions.cs
index 44e920c1e08f..5a1b80a52f25 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileSharesOperationsExtensions.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/FileSharesOperationsExtensions.cs
@@ -113,7 +113,8 @@ public static partial class FileSharesOperationsExtensions
///
///
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
- /// less than or equal to 5TB (5120).
+ /// less than or equal to 5TB (5120). For Large File Shares, the maximum size
+ /// is 100000.
///
public static FileShare Create(this IFileSharesOperations operations, string resourceGroupName, string accountName, string shareName, IDictionary metadata = default(IDictionary), int? shareQuota = default(int?))
{
@@ -148,7 +149,8 @@ public static partial class FileSharesOperationsExtensions
///
///
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
- /// less than or equal to 5TB (5120).
+ /// less than or equal to 5TB (5120). For Large File Shares, the maximum size
+ /// is 100000.
///
///
/// The cancellation token.
@@ -189,7 +191,8 @@ public static partial class FileSharesOperationsExtensions
///
///
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
- /// less than or equal to 5TB (5120).
+ /// less than or equal to 5TB (5120). For Large File Shares, the maximum size
+ /// is 100000.
///
public static FileShare Update(this IFileSharesOperations operations, string resourceGroupName, string accountName, string shareName, IDictionary metadata = default(IDictionary), int? shareQuota = default(int?))
{
@@ -224,7 +227,8 @@ public static partial class FileSharesOperationsExtensions
///
///
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
- /// less than or equal to 5TB (5120).
+ /// less than or equal to 5TB (5120). For Large File Shares, the maximum size
+ /// is 100000.
///
///
/// The cancellation token.
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/IFileServicesOperations.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/IFileServicesOperations.cs
index ceecae372131..ea32df99524a 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/IFileServicesOperations.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/IFileServicesOperations.cs
@@ -70,6 +70,9 @@ public partial interface IFileServicesOperations
/// included in the request body, all CORS rules will be deleted, and
/// CORS will be disabled for the File service.
///
+ ///
+ /// The file service properties for share soft delete.
+ ///
///
/// The headers that will be added to request.
///
@@ -85,7 +88,7 @@ public partial interface IFileServicesOperations
///
/// Thrown when a required parameter is null
///
- Task> SetServicePropertiesWithHttpMessagesAsync(string resourceGroupName, string accountName, CorsRules cors = default(CorsRules), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task> SetServicePropertiesWithHttpMessagesAsync(string resourceGroupName, string accountName, CorsRules cors = default(CorsRules), DeleteRetentionPolicy shareDeleteRetentionPolicy = default(DeleteRetentionPolicy), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
/// Gets the properties of file services in storage accounts, including
/// CORS (Cross-Origin Resource Sharing) rules.
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/IFileSharesOperations.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/IFileSharesOperations.cs
index 687242728ec1..c99d59ee6281 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/IFileSharesOperations.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/IFileSharesOperations.cs
@@ -86,7 +86,8 @@ public partial interface IFileSharesOperations
///
///
/// The maximum size of the share, in gigabytes. Must be greater than
- /// 0, and less than or equal to 5TB (5120).
+ /// 0, and less than or equal to 5TB (5120). For Large File Shares, the
+ /// maximum size is 100000.
///
///
/// The headers that will be added to request.
@@ -130,7 +131,8 @@ public partial interface IFileSharesOperations
///
///
/// The maximum size of the share, in gigabytes. Must be greater than
- /// 0, and less than or equal to 5TB (5120).
+ /// 0, and less than or equal to 5TB (5120). For Large File Shares, the
+ /// maximum size is 100000.
///
///
/// The headers that will be added to request.
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/ISKUsOperations.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/ISKUsOperations.cs
index f4d1a2a12910..75ae3cbba22e 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/ISKUsOperations.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/ISKUsOperations.cs
@@ -42,6 +42,6 @@ public partial interface ISkusOperations
///
/// Thrown when a required parameter is null
///
- Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
}
}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/BlobServiceProperties.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/BlobServiceProperties.cs
index 53de67e58d01..2006365b87e9 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/BlobServiceProperties.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/BlobServiceProperties.cs
@@ -48,12 +48,13 @@ public BlobServiceProperties()
/// incoming request’s version is not specified. Possible values
/// include version 2008-10-27 and all more recent versions.
/// The blob service properties for
- /// soft delete.
+ /// blob soft delete.
/// Automatic Snapshot is
/// enabled if set to true.
/// The blob service properties for change
/// feed events.
- public BlobServiceProperties(string id = default(string), string name = default(string), string type = default(string), CorsRules cors = default(CorsRules), string defaultServiceVersion = default(string), DeleteRetentionPolicy deleteRetentionPolicy = default(DeleteRetentionPolicy), bool? automaticSnapshotPolicyEnabled = default(bool?), ChangeFeed changeFeed = default(ChangeFeed))
+ /// Sku name and tier.
+ public BlobServiceProperties(string id = default(string), string name = default(string), string type = default(string), CorsRules cors = default(CorsRules), string defaultServiceVersion = default(string), DeleteRetentionPolicy deleteRetentionPolicy = default(DeleteRetentionPolicy), bool? automaticSnapshotPolicyEnabled = default(bool?), ChangeFeed changeFeed = default(ChangeFeed), Sku sku = default(Sku))
: base(id, name, type)
{
Cors = cors;
@@ -61,6 +62,7 @@ public BlobServiceProperties()
DeleteRetentionPolicy = deleteRetentionPolicy;
AutomaticSnapshotPolicyEnabled = automaticSnapshotPolicyEnabled;
ChangeFeed = changeFeed;
+ Sku = sku;
CustomInit();
}
@@ -88,7 +90,7 @@ public BlobServiceProperties()
public string DefaultServiceVersion { get; set; }
///
- /// Gets or sets the blob service properties for soft delete.
+ /// Gets or sets the blob service properties for blob soft delete.
///
[JsonProperty(PropertyName = "properties.deleteRetentionPolicy")]
public DeleteRetentionPolicy DeleteRetentionPolicy { get; set; }
@@ -105,6 +107,12 @@ public BlobServiceProperties()
[JsonProperty(PropertyName = "properties.changeFeed")]
public ChangeFeed ChangeFeed { get; set; }
+ ///
+ /// Gets sku name and tier.
+ ///
+ [JsonProperty(PropertyName = "sku")]
+ public Sku Sku { get; private set; }
+
///
/// Validate the object.
///
@@ -117,6 +125,10 @@ public virtual void Validate()
{
DeleteRetentionPolicy.Validate();
}
+ if (Sku != null)
+ {
+ Sku.Validate();
+ }
}
}
}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/DeleteRetentionPolicy.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/DeleteRetentionPolicy.cs
index 7f6babbecaff..b5f1c7ccb8c4 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/DeleteRetentionPolicy.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/DeleteRetentionPolicy.cs
@@ -15,7 +15,7 @@ namespace Microsoft.Azure.Management.Storage.Models
using System.Linq;
///
- /// The blob service properties for soft delete.
+ /// The service properties for soft delete.
///
public partial class DeleteRetentionPolicy
{
@@ -31,9 +31,9 @@ public DeleteRetentionPolicy()
/// Initializes a new instance of the DeleteRetentionPolicy class.
///
/// Indicates whether DeleteRetentionPolicy is
- /// enabled for the Blob service.
+ /// enabled.
/// Indicates the number of days that the deleted
- /// blob should be retained. The minimum specified value can be 1 and
+ /// item should be retained. The minimum specified value can be 1 and
/// the maximum value can be 365.
public DeleteRetentionPolicy(bool? enabled = default(bool?), int? days = default(int?))
{
@@ -48,14 +48,13 @@ public DeleteRetentionPolicy()
partial void CustomInit();
///
- /// Gets or sets indicates whether DeleteRetentionPolicy is enabled for
- /// the Blob service.
+ /// Gets or sets indicates whether DeleteRetentionPolicy is enabled.
///
[JsonProperty(PropertyName = "enabled")]
public bool? Enabled { get; set; }
///
- /// Gets or sets indicates the number of days that the deleted blob
+ /// Gets or sets indicates the number of days that the deleted item
/// should be retained. The minimum specified value can be 1 and the
/// maximum value can be 365.
///
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/Endpoints.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/Endpoints.cs
index 89b3c739e1b0..1f9708a8b83b 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/Endpoints.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/Endpoints.cs
@@ -36,7 +36,11 @@ public Endpoints()
/// Gets the file endpoint.
/// Gets the web endpoint.
/// Gets the dfs endpoint.
- public Endpoints(string blob = default(string), string queue = default(string), string table = default(string), string file = default(string), string web = default(string), string dfs = default(string))
+ /// Gets the microsoft routing storage
+ /// endpoints.
+ /// Gets the internet routing storage
+ /// endpoints
+ public Endpoints(string blob = default(string), string queue = default(string), string table = default(string), string file = default(string), string web = default(string), string dfs = default(string), StorageAccountMicrosoftEndpoints microsoftEndpoints = default(StorageAccountMicrosoftEndpoints), StorageAccountInternetEndpoints internetEndpoints = default(StorageAccountInternetEndpoints))
{
Blob = blob;
Queue = queue;
@@ -44,6 +48,8 @@ public Endpoints()
File = file;
Web = web;
Dfs = dfs;
+ MicrosoftEndpoints = microsoftEndpoints;
+ InternetEndpoints = internetEndpoints;
CustomInit();
}
@@ -88,5 +94,17 @@ public Endpoints()
[JsonProperty(PropertyName = "dfs")]
public string Dfs { get; private set; }
+ ///
+ /// Gets the microsoft routing storage endpoints.
+ ///
+ [JsonProperty(PropertyName = "microsoftEndpoints")]
+ public StorageAccountMicrosoftEndpoints MicrosoftEndpoints { get; set; }
+
+ ///
+ /// Gets the internet routing storage endpoints
+ ///
+ [JsonProperty(PropertyName = "internetEndpoints")]
+ public StorageAccountInternetEndpoints InternetEndpoints { get; set; }
+
}
}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileServiceProperties.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileServiceProperties.cs
index 99f762c6efcf..f6f377852c38 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileServiceProperties.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileServiceProperties.cs
@@ -43,10 +43,15 @@ public FileServiceProperties()
/// CorsRule elements are included in the request body, all CORS rules
/// will be deleted, and CORS will be disabled for the File
/// service.
- public FileServiceProperties(string id = default(string), string name = default(string), string type = default(string), CorsRules cors = default(CorsRules))
+ /// The file service
+ /// properties for share soft delete.
+ /// Sku name and tier.
+ public FileServiceProperties(string id = default(string), string name = default(string), string type = default(string), CorsRules cors = default(CorsRules), DeleteRetentionPolicy shareDeleteRetentionPolicy = default(DeleteRetentionPolicy), Sku sku = default(Sku))
: base(id, name, type)
{
Cors = cors;
+ ShareDeleteRetentionPolicy = shareDeleteRetentionPolicy;
+ Sku = sku;
CustomInit();
}
@@ -64,5 +69,34 @@ public FileServiceProperties()
[JsonProperty(PropertyName = "properties.cors")]
public CorsRules Cors { get; set; }
+ ///
+ /// Gets or sets the file service properties for share soft delete.
+ ///
+ [JsonProperty(PropertyName = "properties.shareDeleteRetentionPolicy")]
+ public DeleteRetentionPolicy ShareDeleteRetentionPolicy { get; set; }
+
+ ///
+ /// Gets sku name and tier.
+ ///
+ [JsonProperty(PropertyName = "sku")]
+ public Sku Sku { get; private set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (ShareDeleteRetentionPolicy != null)
+ {
+ ShareDeleteRetentionPolicy.Validate();
+ }
+ if (Sku != null)
+ {
+ Sku.Validate();
+ }
+ }
}
}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileShare.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileShare.cs
index dc868af4e1fc..a2d80c9c057a 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileShare.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileShare.cs
@@ -48,7 +48,7 @@ public FileShare()
/// share as metadata.
/// The maximum size of the share, in
/// gigabytes. Must be greater than 0, and less than or equal to 5TB
- /// (5120).
+ /// (5120). For Large File Shares, the maximum size is 100000.
public FileShare(string id = default(string), string name = default(string), string type = default(string), string etag = default(string), System.DateTime? lastModifiedTime = default(System.DateTime?), IDictionary metadata = default(IDictionary), int? shareQuota = default(int?))
: base(id, name, type, etag)
{
@@ -78,7 +78,8 @@ public FileShare()
///
/// Gets or sets the maximum size of the share, in gigabytes. Must be
- /// greater than 0, and less than or equal to 5TB (5120).
+ /// greater than 0, and less than or equal to 5TB (5120). For Large
+ /// File Shares, the maximum size is 100000.
///
[JsonProperty(PropertyName = "properties.shareQuota")]
public int? ShareQuota { get; set; }
@@ -91,9 +92,9 @@ public FileShare()
///
public virtual void Validate()
{
- if (ShareQuota > 5120)
+ if (ShareQuota > 100000)
{
- throw new ValidationException(ValidationRules.InclusiveMaximum, "ShareQuota", 5120);
+ throw new ValidationException(ValidationRules.InclusiveMaximum, "ShareQuota", 100000);
}
if (ShareQuota < 1)
{
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileShareItem.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileShareItem.cs
index 4e7bc69bde8e..faaaa44d699f 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileShareItem.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/FileShareItem.cs
@@ -47,7 +47,7 @@ public FileShareItem()
/// share as metadata.
/// The maximum size of the share, in
/// gigabytes. Must be greater than 0, and less than or equal to 5TB
- /// (5120).
+ /// (5120). For Large File Shares, the maximum size is 100000.
public FileShareItem(string id = default(string), string name = default(string), string type = default(string), string etag = default(string), System.DateTime? lastModifiedTime = default(System.DateTime?), IDictionary metadata = default(IDictionary), int? shareQuota = default(int?))
: base(id, name, type, etag)
{
@@ -77,7 +77,8 @@ public FileShareItem()
///
/// Gets or sets the maximum size of the share, in gigabytes. Must be
- /// greater than 0, and less than or equal to 5TB (5120).
+ /// greater than 0, and less than or equal to 5TB (5120). For Large
+ /// File Shares, the maximum size is 100000.
///
[JsonProperty(PropertyName = "properties.shareQuota")]
public int? ShareQuota { get; set; }
@@ -90,9 +91,9 @@ public FileShareItem()
///
public virtual void Validate()
{
- if (ShareQuota > 5120)
+ if (ShareQuota > 100000)
{
- throw new ValidationException(ValidationRules.InclusiveMaximum, "ShareQuota", 5120);
+ throw new ValidationException(ValidationRules.InclusiveMaximum, "ShareQuota", 100000);
}
if (ShareQuota < 1)
{
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/RoutingChoice.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/RoutingChoice.cs
new file mode 100644
index 000000000000..a47a04ab73b5
--- /dev/null
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/RoutingChoice.cs
@@ -0,0 +1,22 @@
+//
+// 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.Storage.Models
+{
+
+ ///
+ /// Defines values for RoutingChoice.
+ ///
+ public static class RoutingChoice
+ {
+ public const string MicrosoftRouting = "MicrosoftRouting";
+ public const string InternetRouting = "InternetRouting";
+ }
+}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/RoutingPreference.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/RoutingPreference.cs
new file mode 100644
index 000000000000..1ea84e8e090c
--- /dev/null
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/RoutingPreference.cs
@@ -0,0 +1,79 @@
+//
+// 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.Storage.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Routing preference defines the type of network, either microsoft or
+ /// internet routing to be used to deliver the user data, the default
+ /// option is microsoft routing
+ ///
+ public partial class RoutingPreference
+ {
+ ///
+ /// Initializes a new instance of the RoutingPreference class.
+ ///
+ public RoutingPreference()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the RoutingPreference class.
+ ///
+ /// Routing Choice defines the kind of
+ /// network routing opted by the user. Possible values include:
+ /// 'MicrosoftRouting', 'InternetRouting'
+ /// A boolean flag which
+ /// indicates whether microsoft routing storage endpoints are to be
+ /// published
+ /// A boolean flag which
+ /// indicates whether internet routing storage endpoints are to be
+ /// published
+ public RoutingPreference(string routingChoice = default(string), bool? publishMicrosoftEndpoints = default(bool?), bool? publishInternetEndpoints = default(bool?))
+ {
+ RoutingChoice = routingChoice;
+ PublishMicrosoftEndpoints = publishMicrosoftEndpoints;
+ PublishInternetEndpoints = publishInternetEndpoints;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets routing Choice defines the kind of network routing
+ /// opted by the user. Possible values include: 'MicrosoftRouting',
+ /// 'InternetRouting'
+ ///
+ [JsonProperty(PropertyName = "routingChoice")]
+ public string RoutingChoice { get; set; }
+
+ ///
+ /// Gets or sets a boolean flag which indicates whether microsoft
+ /// routing storage endpoints are to be published
+ ///
+ [JsonProperty(PropertyName = "publishMicrosoftEndpoints")]
+ public bool? PublishMicrosoftEndpoints { get; set; }
+
+ ///
+ /// Gets or sets a boolean flag which indicates whether internet
+ /// routing storage endpoints are to be published
+ ///
+ [JsonProperty(PropertyName = "publishInternetEndpoints")]
+ public bool? PublishInternetEndpoints { get; set; }
+
+ }
+}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/Sku.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/Sku.cs
index 191aa99584c4..a30fcf562a16 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/Sku.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/Sku.cs
@@ -12,8 +12,6 @@ namespace Microsoft.Azure.Management.Storage.Models
{
using Microsoft.Rest;
using Newtonsoft.Json;
- using System.Collections;
- using System.Collections.Generic;
using System.Linq;
///
@@ -32,36 +30,15 @@ public Sku()
///
/// Initializes a new instance of the Sku class.
///
- /// Gets or sets the SKU name. Required for account
- /// creation; optional for update. Note that in older versions, SKU
- /// name was called accountType. Possible values include:
- /// 'Standard_LRS', 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS',
- /// 'Premium_LRS', 'Premium_ZRS', 'Standard_GZRS',
- /// 'Standard_RAGZRS'
- /// Gets the SKU tier. This is based on the SKU
- /// name. Possible values include: 'Standard', 'Premium'
- /// The type of the resource, usually it is
- /// 'storageAccounts'.
- /// Indicates the type of storage account. Possible
- /// values include: 'Storage', 'StorageV2', 'BlobStorage',
- /// 'FileStorage', 'BlockBlobStorage'
- /// The set of locations that the SKU is
- /// available. This will be supported and registered Azure Geo Regions
- /// (e.g. West US, East US, Southeast Asia, etc.).
- /// The capability information in the
- /// specified SKU, including file encryption, network ACLs, change
- /// notification, etc.
- /// The restrictions because of which SKU
- /// cannot be used. This is empty if there are no restrictions.
- public Sku(string name, SkuTier? tier = default(SkuTier?), string resourceType = default(string), string kind = default(string), IList locations = default(IList), IList capabilities = default(IList), IList restrictions = default(IList))
+ /// Possible values include: 'Standard_LRS',
+ /// 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS',
+ /// 'Premium_ZRS', 'Standard_GZRS', 'Standard_RAGZRS'
+ /// Possible values include: 'Standard',
+ /// 'Premium'
+ public Sku(string name, SkuTier? tier = default(SkuTier?))
{
Name = name;
Tier = tier;
- ResourceType = resourceType;
- Kind = kind;
- Locations = locations;
- Capabilities = capabilities;
- Restrictions = restrictions;
CustomInit();
}
@@ -71,9 +48,7 @@ public Sku()
partial void CustomInit();
///
- /// Gets or sets the SKU name. Required for account creation; optional
- /// for update. Note that in older versions, SKU name was called
- /// accountType. Possible values include: 'Standard_LRS',
+ /// Gets or sets possible values include: 'Standard_LRS',
/// 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS',
/// 'Premium_ZRS', 'Standard_GZRS', 'Standard_RAGZRS'
///
@@ -81,47 +56,10 @@ public Sku()
public string Name { get; set; }
///
- /// Gets the SKU tier. This is based on the SKU name. Possible values
- /// include: 'Standard', 'Premium'
+ /// Gets or sets possible values include: 'Standard', 'Premium'
///
[JsonProperty(PropertyName = "tier")]
- public SkuTier? Tier { get; private set; }
-
- ///
- /// Gets the type of the resource, usually it is 'storageAccounts'.
- ///
- [JsonProperty(PropertyName = "resourceType")]
- public string ResourceType { get; private set; }
-
- ///
- /// Gets indicates the type of storage account. Possible values
- /// include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage',
- /// 'BlockBlobStorage'
- ///
- [JsonProperty(PropertyName = "kind")]
- public string Kind { get; private set; }
-
- ///
- /// Gets the set of locations that the SKU is available. This will be
- /// supported and registered Azure Geo Regions (e.g. West US, East US,
- /// Southeast Asia, etc.).
- ///
- [JsonProperty(PropertyName = "locations")]
- public IList Locations { get; private set; }
-
- ///
- /// Gets the capability information in the specified SKU, including
- /// file encryption, network ACLs, change notification, etc.
- ///
- [JsonProperty(PropertyName = "capabilities")]
- public IList Capabilities { get; private set; }
-
- ///
- /// Gets or sets the restrictions because of which SKU cannot be used.
- /// This is empty if there are no restrictions.
- ///
- [JsonProperty(PropertyName = "restrictions")]
- public IList Restrictions { get; set; }
+ public SkuTier? Tier { get; set; }
///
/// Validate the object.
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/SkuInformation.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/SkuInformation.cs
new file mode 100644
index 000000000000..cb79e6f72f10
--- /dev/null
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/SkuInformation.cs
@@ -0,0 +1,134 @@
+//
+// 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.Storage.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+
+ ///
+ /// Storage SKU and its properties
+ ///
+ public partial class SkuInformation
+ {
+ ///
+ /// Initializes a new instance of the SkuInformation class.
+ ///
+ public SkuInformation()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the SkuInformation class.
+ ///
+ /// Possible values include: 'Standard_LRS',
+ /// 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS',
+ /// 'Premium_ZRS', 'Standard_GZRS', 'Standard_RAGZRS'
+ /// Possible values include: 'Standard',
+ /// 'Premium'
+ /// The type of the resource, usually it is
+ /// 'storageAccounts'.
+ /// Indicates the type of storage account. Possible
+ /// values include: 'Storage', 'StorageV2', 'BlobStorage',
+ /// 'FileStorage', 'BlockBlobStorage'
+ /// The set of locations that the SKU is
+ /// available. This will be supported and registered Azure Geo Regions
+ /// (e.g. West US, East US, Southeast Asia, etc.).
+ /// The capability information in the
+ /// specified SKU, including file encryption, network ACLs, change
+ /// notification, etc.
+ /// The restrictions because of which SKU
+ /// cannot be used. This is empty if there are no restrictions.
+ public SkuInformation(string name, SkuTier? tier = default(SkuTier?), string resourceType = default(string), string kind = default(string), IList locations = default(IList), IList capabilities = default(IList), IList restrictions = default(IList))
+ {
+ Name = name;
+ Tier = tier;
+ ResourceType = resourceType;
+ Kind = kind;
+ Locations = locations;
+ Capabilities = capabilities;
+ Restrictions = restrictions;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets possible values include: 'Standard_LRS',
+ /// 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS',
+ /// 'Premium_ZRS', 'Standard_GZRS', 'Standard_RAGZRS'
+ ///
+ [JsonProperty(PropertyName = "name")]
+ public string Name { get; set; }
+
+ ///
+ /// Gets or sets possible values include: 'Standard', 'Premium'
+ ///
+ [JsonProperty(PropertyName = "tier")]
+ public SkuTier? Tier { get; set; }
+
+ ///
+ /// Gets the type of the resource, usually it is 'storageAccounts'.
+ ///
+ [JsonProperty(PropertyName = "resourceType")]
+ public string ResourceType { get; private set; }
+
+ ///
+ /// Gets indicates the type of storage account. Possible values
+ /// include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage',
+ /// 'BlockBlobStorage'
+ ///
+ [JsonProperty(PropertyName = "kind")]
+ public string Kind { get; private set; }
+
+ ///
+ /// Gets the set of locations that the SKU is available. This will be
+ /// supported and registered Azure Geo Regions (e.g. West US, East US,
+ /// Southeast Asia, etc.).
+ ///
+ [JsonProperty(PropertyName = "locations")]
+ public IList Locations { get; private set; }
+
+ ///
+ /// Gets the capability information in the specified SKU, including
+ /// file encryption, network ACLs, change notification, etc.
+ ///
+ [JsonProperty(PropertyName = "capabilities")]
+ public IList Capabilities { get; private set; }
+
+ ///
+ /// Gets or sets the restrictions because of which SKU cannot be used.
+ /// This is empty if there are no restrictions.
+ ///
+ [JsonProperty(PropertyName = "restrictions")]
+ public IList Restrictions { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (Name == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "Name");
+ }
+ }
+ }
+}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccount.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccount.cs
index 75855f4df75f..8033b1e268ba 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccount.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccount.cs
@@ -102,7 +102,9 @@ public StorageAccount()
/// values include: 'Disabled', 'Enabled'
/// List of private endpoint
/// connection associated with the specified storage account
- public StorageAccount(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), string kind = default(string), Identity identity = default(Identity), ProvisioningState? provisioningState = default(ProvisioningState?), Endpoints primaryEndpoints = default(Endpoints), string primaryLocation = default(string), AccountStatus? statusOfPrimary = default(AccountStatus?), System.DateTime? lastGeoFailoverTime = default(System.DateTime?), string secondaryLocation = default(string), AccountStatus? statusOfSecondary = default(AccountStatus?), System.DateTime? creationTime = default(System.DateTime?), CustomDomain customDomain = default(CustomDomain), Endpoints secondaryEndpoints = default(Endpoints), Encryption encryption = default(Encryption), AccessTier? accessTier = default(AccessTier?), AzureFilesIdentityBasedAuthentication azureFilesIdentityBasedAuthentication = default(AzureFilesIdentityBasedAuthentication), bool? enableHttpsTrafficOnly = default(bool?), NetworkRuleSet networkRuleSet = default(NetworkRuleSet), bool? isHnsEnabled = default(bool?), GeoReplicationStats geoReplicationStats = default(GeoReplicationStats), bool? failoverInProgress = default(bool?), string largeFileSharesState = default(string), IList privateEndpointConnections = default(IList))
+ /// Maintains information about the
+ /// network routing choice opted by the user for data transfer
+ public StorageAccount(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), string kind = default(string), Identity identity = default(Identity), ProvisioningState? provisioningState = default(ProvisioningState?), Endpoints primaryEndpoints = default(Endpoints), string primaryLocation = default(string), AccountStatus? statusOfPrimary = default(AccountStatus?), System.DateTime? lastGeoFailoverTime = default(System.DateTime?), string secondaryLocation = default(string), AccountStatus? statusOfSecondary = default(AccountStatus?), System.DateTime? creationTime = default(System.DateTime?), CustomDomain customDomain = default(CustomDomain), Endpoints secondaryEndpoints = default(Endpoints), Encryption encryption = default(Encryption), AccessTier? accessTier = default(AccessTier?), AzureFilesIdentityBasedAuthentication azureFilesIdentityBasedAuthentication = default(AzureFilesIdentityBasedAuthentication), bool? enableHttpsTrafficOnly = default(bool?), NetworkRuleSet networkRuleSet = default(NetworkRuleSet), bool? isHnsEnabled = default(bool?), GeoReplicationStats geoReplicationStats = default(GeoReplicationStats), bool? failoverInProgress = default(bool?), string largeFileSharesState = default(string), IList privateEndpointConnections = default(IList), RoutingPreference routingPreference = default(RoutingPreference))
: base(location, id, name, type, tags)
{
Sku = sku;
@@ -128,6 +130,7 @@ public StorageAccount()
FailoverInProgress = failoverInProgress;
LargeFileSharesState = largeFileSharesState;
PrivateEndpointConnections = privateEndpointConnections;
+ RoutingPreference = routingPreference;
CustomInit();
}
@@ -302,6 +305,13 @@ public StorageAccount()
[JsonProperty(PropertyName = "properties.privateEndpointConnections")]
public IList PrivateEndpointConnections { get; private set; }
+ ///
+ /// Gets or sets maintains information about the network routing choice
+ /// opted by the user for data transfer
+ ///
+ [JsonProperty(PropertyName = "properties.routingPreference")]
+ public RoutingPreference RoutingPreference { get; set; }
+
///
/// Validate the object.
///
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountCreateParameters.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountCreateParameters.cs
index 35263eb6018d..81c599fd1c12 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountCreateParameters.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountCreateParameters.cs
@@ -74,7 +74,9 @@ public StorageAccountCreateParameters()
/// Allow large file shares if sets
/// to Enabled. It cannot be disabled once it is enabled. Possible
/// values include: 'Disabled', 'Enabled'
- public StorageAccountCreateParameters(Sku sku, string kind, string location, IDictionary tags = default(IDictionary), Identity identity = default(Identity), CustomDomain customDomain = default(CustomDomain), Encryption encryption = default(Encryption), NetworkRuleSet networkRuleSet = default(NetworkRuleSet), AccessTier? accessTier = default(AccessTier?), AzureFilesIdentityBasedAuthentication azureFilesIdentityBasedAuthentication = default(AzureFilesIdentityBasedAuthentication), bool? enableHttpsTrafficOnly = default(bool?), bool? isHnsEnabled = default(bool?), string largeFileSharesState = default(string))
+ /// Maintains information about the
+ /// network routing choice opted by the user for data transfer
+ public StorageAccountCreateParameters(Sku sku, string kind, string location, IDictionary tags = default(IDictionary), Identity identity = default(Identity), CustomDomain customDomain = default(CustomDomain), Encryption encryption = default(Encryption), NetworkRuleSet networkRuleSet = default(NetworkRuleSet), AccessTier? accessTier = default(AccessTier?), AzureFilesIdentityBasedAuthentication azureFilesIdentityBasedAuthentication = default(AzureFilesIdentityBasedAuthentication), bool? enableHttpsTrafficOnly = default(bool?), bool? isHnsEnabled = default(bool?), string largeFileSharesState = default(string), RoutingPreference routingPreference = default(RoutingPreference))
{
Sku = sku;
Kind = kind;
@@ -89,6 +91,7 @@ public StorageAccountCreateParameters()
EnableHttpsTrafficOnly = enableHttpsTrafficOnly;
IsHnsEnabled = isHnsEnabled;
LargeFileSharesState = largeFileSharesState;
+ RoutingPreference = routingPreference;
CustomInit();
}
@@ -196,6 +199,13 @@ public StorageAccountCreateParameters()
[JsonProperty(PropertyName = "properties.largeFileSharesState")]
public string LargeFileSharesState { get; set; }
+ ///
+ /// Gets or sets maintains information about the network routing choice
+ /// opted by the user for data transfer
+ ///
+ [JsonProperty(PropertyName = "properties.routingPreference")]
+ public RoutingPreference RoutingPreference { get; set; }
+
///
/// Validate the object.
///
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountInternetEndpoints.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountInternetEndpoints.cs
new file mode 100644
index 000000000000..c7fc7c9978e1
--- /dev/null
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountInternetEndpoints.cs
@@ -0,0 +1,78 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Storage.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The URIs that are used to perform a retrieval of a public blob, file,
+ /// web or dfs object via a internet routing endpoint.
+ ///
+ public partial class StorageAccountInternetEndpoints
+ {
+ ///
+ /// Initializes a new instance of the StorageAccountInternetEndpoints
+ /// class.
+ ///
+ public StorageAccountInternetEndpoints()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the StorageAccountInternetEndpoints
+ /// class.
+ ///
+ /// Gets the blob endpoint.
+ /// Gets the file endpoint.
+ /// Gets the web endpoint.
+ /// Gets the dfs endpoint.
+ public StorageAccountInternetEndpoints(string blob = default(string), string file = default(string), string web = default(string), string dfs = default(string))
+ {
+ Blob = blob;
+ File = file;
+ Web = web;
+ Dfs = dfs;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the blob endpoint.
+ ///
+ [JsonProperty(PropertyName = "blob")]
+ public string Blob { get; private set; }
+
+ ///
+ /// Gets the file endpoint.
+ ///
+ [JsonProperty(PropertyName = "file")]
+ public string File { get; private set; }
+
+ ///
+ /// Gets the web endpoint.
+ ///
+ [JsonProperty(PropertyName = "web")]
+ public string Web { get; private set; }
+
+ ///
+ /// Gets the dfs endpoint.
+ ///
+ [JsonProperty(PropertyName = "dfs")]
+ public string Dfs { get; private set; }
+
+ }
+}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountMicrosoftEndpoints.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountMicrosoftEndpoints.cs
new file mode 100644
index 000000000000..8324f2afe60e
--- /dev/null
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountMicrosoftEndpoints.cs
@@ -0,0 +1,94 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Storage.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The URIs that are used to perform a retrieval of a public blob, queue,
+ /// table, web or dfs object via a microsoft routing endpoint.
+ ///
+ public partial class StorageAccountMicrosoftEndpoints
+ {
+ ///
+ /// Initializes a new instance of the StorageAccountMicrosoftEndpoints
+ /// class.
+ ///
+ public StorageAccountMicrosoftEndpoints()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the StorageAccountMicrosoftEndpoints
+ /// class.
+ ///
+ /// Gets the blob endpoint.
+ /// Gets the queue endpoint.
+ /// Gets the table endpoint.
+ /// Gets the file endpoint.
+ /// Gets the web endpoint.
+ /// Gets the dfs endpoint.
+ public StorageAccountMicrosoftEndpoints(string blob = default(string), string queue = default(string), string table = default(string), string file = default(string), string web = default(string), string dfs = default(string))
+ {
+ Blob = blob;
+ Queue = queue;
+ Table = table;
+ File = file;
+ Web = web;
+ Dfs = dfs;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the blob endpoint.
+ ///
+ [JsonProperty(PropertyName = "blob")]
+ public string Blob { get; private set; }
+
+ ///
+ /// Gets the queue endpoint.
+ ///
+ [JsonProperty(PropertyName = "queue")]
+ public string Queue { get; private set; }
+
+ ///
+ /// Gets the table endpoint.
+ ///
+ [JsonProperty(PropertyName = "table")]
+ public string Table { get; private set; }
+
+ ///
+ /// Gets the file endpoint.
+ ///
+ [JsonProperty(PropertyName = "file")]
+ public string File { get; private set; }
+
+ ///
+ /// Gets the web endpoint.
+ ///
+ [JsonProperty(PropertyName = "web")]
+ public string Web { get; private set; }
+
+ ///
+ /// Gets the dfs endpoint.
+ ///
+ [JsonProperty(PropertyName = "dfs")]
+ public string Dfs { get; private set; }
+
+ }
+}
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountUpdateParameters.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountUpdateParameters.cs
index 7edd3c534623..c98f2efa40d8 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountUpdateParameters.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/StorageAccountUpdateParameters.cs
@@ -66,11 +66,13 @@ public StorageAccountUpdateParameters()
/// Allow large file shares if sets
/// to Enabled. It cannot be disabled once it is enabled. Possible
/// values include: 'Disabled', 'Enabled'
+ /// Maintains information about the
+ /// network routing choice opted by the user for data transfer
/// Optional. Indicates the type of storage account.
/// Currently only StorageV2 value supported by server. Possible values
/// include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage',
/// 'BlockBlobStorage'
- public StorageAccountUpdateParameters(Sku sku = default(Sku), IDictionary tags = default(IDictionary), Identity identity = default(Identity), CustomDomain customDomain = default(CustomDomain), Encryption encryption = default(Encryption), AccessTier? accessTier = default(AccessTier?), AzureFilesIdentityBasedAuthentication azureFilesIdentityBasedAuthentication = default(AzureFilesIdentityBasedAuthentication), bool? enableHttpsTrafficOnly = default(bool?), NetworkRuleSet networkRuleSet = default(NetworkRuleSet), string largeFileSharesState = default(string), string kind = default(string))
+ public StorageAccountUpdateParameters(Sku sku = default(Sku), IDictionary tags = default(IDictionary), Identity identity = default(Identity), CustomDomain customDomain = default(CustomDomain), Encryption encryption = default(Encryption), AccessTier? accessTier = default(AccessTier?), AzureFilesIdentityBasedAuthentication azureFilesIdentityBasedAuthentication = default(AzureFilesIdentityBasedAuthentication), bool? enableHttpsTrafficOnly = default(bool?), NetworkRuleSet networkRuleSet = default(NetworkRuleSet), string largeFileSharesState = default(string), RoutingPreference routingPreference = default(RoutingPreference), string kind = default(string))
{
Sku = sku;
Tags = tags;
@@ -82,6 +84,7 @@ public StorageAccountUpdateParameters()
EnableHttpsTrafficOnly = enableHttpsTrafficOnly;
NetworkRuleSet = networkRuleSet;
LargeFileSharesState = largeFileSharesState;
+ RoutingPreference = routingPreference;
Kind = kind;
CustomInit();
}
@@ -167,6 +170,13 @@ public StorageAccountUpdateParameters()
[JsonProperty(PropertyName = "properties.largeFileSharesState")]
public string LargeFileSharesState { get; set; }
+ ///
+ /// Gets or sets maintains information about the network routing choice
+ /// opted by the user for data transfer
+ ///
+ [JsonProperty(PropertyName = "properties.routingPreference")]
+ public RoutingPreference RoutingPreference { get; set; }
+
///
/// Gets or sets optional. Indicates the type of storage account.
/// Currently only StorageV2 value supported by server. Possible values
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SKUsOperations.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SKUsOperations.cs
index 03f6e1559754..5801c756c9aa 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SKUsOperations.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SKUsOperations.cs
@@ -75,7 +75,7 @@ internal SkusOperations(StorageManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (Client.ApiVersion == null)
{
@@ -211,7 +211,7 @@ internal SkusOperations(StorageManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse>();
+ var _result = new AzureOperationResponse>();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
@@ -224,7 +224,7 @@ internal SkusOperations(StorageManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SKUsOperationsExtensions.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SKUsOperationsExtensions.cs
index 1f1781bc5868..dd57fc389b59 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SKUsOperationsExtensions.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SKUsOperationsExtensions.cs
@@ -30,7 +30,7 @@ public static partial class SkusOperationsExtensions
///
/// The operations group for this extension method.
///
- public static IEnumerable List(this ISkusOperations operations)
+ public static IEnumerable List(this ISkusOperations operations)
{
return operations.ListAsync().GetAwaiter().GetResult();
}
@@ -45,7 +45,7 @@ public static IEnumerable List(this ISkusOperations operations)
///
/// The cancellation token.
///
- public static async Task> ListAsync(this ISkusOperations operations, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task> ListAsync(this ISkusOperations operations, CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false))
{
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SdkInfo_StorageManagementClient.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SdkInfo_StorageManagementClient.cs
index 589164b5ca23..0dd946dae1b4 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SdkInfo_StorageManagementClient.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/SdkInfo_StorageManagementClient.cs
@@ -35,11 +35,11 @@ public static IEnumerable> ApiInfo_StorageManageme
}
// BEGIN: Code Generation Metadata Section
public static readonly String AutoRestVersion = "latest";
- public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283";
+ public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4407";
public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/storage/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp.output-folder=C:\\code\\srpsdk\\sdk\\storage\\Microsoft.Azure.Management.Storage\\src\\Generated";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
- public static readonly String GithubCommidId = "5265b9205331da0a55f2d17eb6b436b7d67d1f09";
+ public static readonly String GithubCommidId = "ef5bff591188a232471a8f81d7bc02c7c9f7d68d";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Microsoft.Azure.Management.Storage.csproj b/sdk/storage/Microsoft.Azure.Management.Storage/src/Microsoft.Azure.Management.Storage.csproj
index 9907bd07f511..0d5c4a7e7aa9 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Microsoft.Azure.Management.Storage.csproj
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Microsoft.Azure.Management.Storage.csproj
@@ -7,7 +7,7 @@
Microsoft.Azure.Management.Storage
Microsoft Azure Management Storage Library
Microsoft.Azure.Management.Storage
- 14.0.0
+ 14.1.0
Microsoft Azure Storage management;Storage;Storage management;
See https://aka.ms/asdotnetsdkchangelog for release notes.
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Properties/AssemblyInfo.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Properties/AssemblyInfo.cs
index f77cb3fbeb4a..5a68bb14a3c4 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Properties/AssemblyInfo.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Properties/AssemblyInfo.cs
@@ -8,7 +8,7 @@
[assembly: AssemblyDescription("Provides Microsoft Azure Storage management functions for managing the Microsoft Azure Storage service.")]
[assembly: AssemblyVersion("14.0.0.0")]
-[assembly: AssemblyFileVersion("14.0.0.0")]
+[assembly: AssemblyFileVersion("14.1.0.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/BlobServiceTests/BlobServiceTest.json b/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/BlobServiceTests/BlobServiceTest.json
index 46fcb102a036..617290609586 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/BlobServiceTests/BlobServiceTest.json
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/BlobServiceTests/BlobServiceTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res288?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczI4OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res124?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczEyND9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a5aacdec-8d25-4f1b-a624-4f0326f7eb25"
+ "5bfe8969-b7f1-42bb-a716-251d5e9e0ed3"
],
"Accept-Language": [
"en-US"
@@ -15,7 +15,7 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -33,16 +33,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-request-id": [
- "37f02273-9307-4f23-b67d-f4c020e6cf99"
+ "4d0aecb7-9bb3-49e3-8372-43ec98ed1591"
],
"x-ms-correlation-request-id": [
- "37f02273-9307-4f23-b67d-f4c020e6cf99"
+ "4d0aecb7-9bb3-49e3-8372-43ec98ed1591"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081730Z:37f02273-9307-4f23-b67d-f4c020e6cf99"
+ "SOUTHEASTASIA:20191122T073752Z:4d0aecb7-9bb3-49e3-8372-43ec98ed1591"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:17:29 GMT"
+ "Fri, 22 Nov 2019 07:37:52 GMT"
],
"Content-Length": [
"166"
@@ -63,17 +63,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288\",\r\n \"name\": \"res288\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124\",\r\n \"name\": \"res124\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288/providers/Microsoft.Storage/storageAccounts/sto3075?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI4OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzMwNzU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124/providers/Microsoft.Storage/storageAccounts/sto3775?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzM3NzU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0216a6b9-a059-4674-9143-ca0389d6c0fc"
+ "203df851-980a-44d5-9387-094068d67931"
],
"Accept-Language": [
"en-US"
@@ -81,8 +81,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,13 +99,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/2b6e8607-c064-4829-80fb-48e55549cb59?monitor=true&api-version=2019-06-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/7d7daa6c-aa69-4867-be5a-300a2acb1ae1?monitor=true&api-version=2019-06-01"
],
"Retry-After": [
"17"
],
"x-ms-request-id": [
- "2b6e8607-c064-4829-80fb-48e55549cb59"
+ "7d7daa6c-aa69-4867-be5a-300a2acb1ae1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -114,19 +114,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-correlation-request-id": [
- "c9bb2045-fdef-44c9-a884-5edcfcc0b4e5"
+ "a9e0c00e-430d-4786-8dc5-933b2f83817d"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081733Z:c9bb2045-fdef-44c9-a884-5edcfcc0b4e5"
+ "SOUTHEASTASIA:20191122T073757Z:a9e0c00e-430d-4786-8dc5-933b2f83817d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:17:32 GMT"
+ "Fri, 22 Nov 2019 07:37:57 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -142,16 +142,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/2b6e8607-c064-4829-80fb-48e55549cb59?monitor=true&api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zLzJiNmU4NjA3LWMwNjQtNDgyOS04MGZiLTQ4ZTU1NTQ5Y2I1OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/7d7daa6c-aa69-4867-be5a-300a2acb1ae1?monitor=true&api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zLzdkN2RhYTZjLWFhNjktNDg2Ny1iZTVhLTMwMGEyYWNiMWFlMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -162,7 +162,7 @@
"no-cache"
],
"x-ms-request-id": [
- "99cd0686-c62a-443c-9c63-f987aa35bc8a"
+ "96b1e212-ccbd-4b92-a2e5-2af5905494b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,19 +171,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11999"
],
"x-ms-correlation-request-id": [
- "05ef3fb5-fe0a-429c-99a1-cc32a3087e05"
+ "a0280b73-0c8e-4860-9876-bdcf185faa0e"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081750Z:05ef3fb5-fe0a-429c-99a1-cc32a3087e05"
+ "SOUTHEASTASIA:20191122T073815Z:a0280b73-0c8e-4860-9876-bdcf185faa0e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:17:49 GMT"
+ "Fri, 22 Nov 2019 07:38:14 GMT"
],
"Content-Length": [
"1152"
@@ -195,17 +195,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288/providers/Microsoft.Storage/storageAccounts/sto3075\",\r\n \"name\": \"sto3075\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-10T08:17:32.6687414Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-10T08:17:32.6687414Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-10-10T08:17:32.6061841Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sto3075.blob.core.windows.net/\",\r\n \"queue\": \"https://sto3075.queue.core.windows.net/\",\r\n \"table\": \"https://sto3075.table.core.windows.net/\",\r\n \"file\": \"https://sto3075.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus(stage)\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124/providers/Microsoft.Storage/storageAccounts/sto3775\",\r\n \"name\": \"sto3775\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-22T07:37:57.250436Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-22T07:37:57.250436Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-22T07:37:57.1879255Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sto3775.blob.core.windows.net/\",\r\n \"queue\": \"https://sto3775.queue.core.windows.net/\",\r\n \"table\": \"https://sto3775.table.core.windows.net/\",\r\n \"file\": \"https://sto3775.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus(stage)\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288/providers/Microsoft.Storage/storageAccounts/sto3075/blobServices/default?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI4OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzMwNzUvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124/providers/Microsoft.Storage/storageAccounts/sto3775/blobServices/default?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzM3NzUvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7768edfc-8aa8-49aa-943b-5af0ee63cc2e"
+ "9c9aafcf-e282-4024-a0aa-f258fd792435"
],
"Accept-Language": [
"en-US"
@@ -213,8 +213,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"no-cache"
],
"x-ms-request-id": [
- "93a11f3a-6b19-4f8e-a62d-da4e93b48af9"
+ "293c6f37-8059-4e18-9c96-8586b7d6fb22"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,22 +234,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11998"
],
"x-ms-correlation-request-id": [
- "de099979-5eea-4574-b826-304fc7ce56fa"
+ "528ed22f-25c3-4074-8fa7-d4e03ddb6de2"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081750Z:de099979-5eea-4574-b826-304fc7ce56fa"
+ "SOUTHEASTASIA:20191122T073816Z:528ed22f-25c3-4074-8fa7-d4e03ddb6de2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:17:50 GMT"
+ "Fri, 22 Nov 2019 07:38:15 GMT"
],
"Content-Length": [
- "309"
+ "339"
],
"Content-Type": [
"application/json"
@@ -258,17 +258,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288/providers/Microsoft.Storage/storageAccounts/sto3075/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124/providers/Microsoft.Storage/storageAccounts/sto3775/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288/providers/Microsoft.Storage/storageAccounts/sto3075/blobServices/default?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI4OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzMwNzUvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124/providers/Microsoft.Storage/storageAccounts/sto3775/blobServices/default?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzM3NzUvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ec54b96-aad1-4d37-a633-d46dea5b7918"
+ "8bf6ed2f-7d26-4321-952e-fff5d9d261ca"
],
"Accept-Language": [
"en-US"
@@ -276,8 +276,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -288,7 +288,7 @@
"no-cache"
],
"x-ms-request-id": [
- "f59ba47e-0b30-494c-8e90-db21e9745b59"
+ "e87ddf15-0ff3-4e4e-9dfa-b1fb8ecac7b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -297,22 +297,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11997"
],
"x-ms-correlation-request-id": [
- "5023ac41-8a1f-41b4-b175-05b846be23a9"
+ "b109cb38-8c1e-4d04-98d4-1c1785527808"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081753Z:5023ac41-8a1f-41b4-b175-05b846be23a9"
+ "SOUTHEASTASIA:20191122T073817Z:b109cb38-8c1e-4d04-98d4-1c1785527808"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:17:52 GMT"
+ "Fri, 22 Nov 2019 07:38:16 GMT"
],
"Content-Length": [
- "356"
+ "386"
],
"Content-Type": [
"application/json"
@@ -321,17 +321,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288/providers/Microsoft.Storage/storageAccounts/sto3075/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2017-04-17\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 300\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124/providers/Microsoft.Storage/storageAccounts/sto3775/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2017-04-17\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 300\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288/providers/Microsoft.Storage/storageAccounts/sto3075/blobServices/default?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI4OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzMwNzUvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124/providers/Microsoft.Storage/storageAccounts/sto3775/blobServices/default?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzM3NzUvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2017-04-17\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 300\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f9ba70bc-7d82-4844-8a7a-986692c1c60f"
+ "32d57a95-9012-4e14-b93d-798a550cf13b"
],
"Accept-Language": [
"en-US"
@@ -339,8 +339,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -357,7 +357,7 @@
"no-cache"
],
"x-ms-request-id": [
- "c59d1095-80f8-41e2-815d-7fe00a7288bf"
+ "3e90b76f-f90c-4623-b3cf-be5517930174"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,19 +366,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1197"
],
"x-ms-correlation-request-id": [
- "c45a6f18-ee9f-476f-b70b-336203ed7b2e"
+ "83efca6a-a72a-4386-8af7-431773058fe3"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081752Z:c45a6f18-ee9f-476f-b70b-336203ed7b2e"
+ "SOUTHEASTASIA:20191122T073817Z:83efca6a-a72a-4386-8af7-431773058fe3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:17:52 GMT"
+ "Fri, 22 Nov 2019 07:38:16 GMT"
],
"Content-Length": [
"356"
@@ -390,17 +390,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288/providers/Microsoft.Storage/storageAccounts/sto3075/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2017-04-17\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 300\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124/providers/Microsoft.Storage/storageAccounts/sto3775/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"defaultServiceVersion\": \"2017-04-17\",\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 300\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res288/providers/Microsoft.Storage/storageAccounts/sto3075?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI4OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzMwNzU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res124/providers/Microsoft.Storage/storageAccounts/sto3775?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczEyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzM3NzU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "143dd1c7-1e12-42ba-9797-c0d50f92cf80"
+ "becd7f07-423f-4210-9878-f8dd681dcbd6"
],
"Accept-Language": [
"en-US"
@@ -408,8 +408,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -420,7 +420,7 @@
"no-cache"
],
"x-ms-request-id": [
- "21c7aa79-e5b5-492a-9828-0589a1cb5244"
+ "4db07d74-efd8-4c12-b748-ba288d3d14f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -429,19 +429,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14998"
],
"x-ms-correlation-request-id": [
- "b9c0bd3f-337c-49ab-8331-abc6baf0f74c"
+ "b70b72d5-759d-422b-8f8a-85ac3241ba26"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081755Z:b9c0bd3f-337c-49ab-8331-abc6baf0f74c"
+ "SOUTHEASTASIA:20191122T073820Z:b70b72d5-759d-422b-8f8a-85ac3241ba26"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:17:54 GMT"
+ "Fri, 22 Nov 2019 07:38:20 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -457,13 +457,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res288?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczI4OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res124?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczEyND9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6503a243-69ae-4538-9414-cb8ad50fa755"
+ "bf037a51-31aa-406a-8a79-789952f58fbf"
],
"Accept-Language": [
"en-US"
@@ -471,7 +471,7 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -483,22 +483,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
+ "14997"
],
"x-ms-request-id": [
- "68d45262-57da-4ca2-9135-a31711cf4a86"
+ "c48dff52-3f13-4a23-b153-1ea4555cb566"
],
"x-ms-correlation-request-id": [
- "68d45262-57da-4ca2-9135-a31711cf4a86"
+ "c48dff52-3f13-4a23-b153-1ea4555cb566"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081800Z:68d45262-57da-4ca2-9135-a31711cf4a86"
+ "SOUTHEASTASIA:20191122T073824Z:c48dff52-3f13-4a23-b153-1ea4555cb566"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -507,7 +507,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:17:59 GMT"
+ "Fri, 22 Nov 2019 07:38:24 GMT"
],
"Expires": [
"-1"
@@ -520,15 +520,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9EZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -540,22 +540,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11996"
],
"x-ms-request-id": [
- "36c092ad-428a-49a6-8b53-47305fa17420"
+ "6bd09601-197c-451c-a985-272ea2451fa9"
],
"x-ms-correlation-request-id": [
- "36c092ad-428a-49a6-8b53-47305fa17420"
+ "6bd09601-197c-451c-a985-272ea2451fa9"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081815Z:36c092ad-428a-49a6-8b53-47305fa17420"
+ "SOUTHEASTASIA:20191122T073840Z:6bd09601-197c-451c-a985-272ea2451fa9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -564,7 +564,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:18:14 GMT"
+ "Fri, 22 Nov 2019 07:38:39 GMT"
],
"Expires": [
"-1"
@@ -577,15 +577,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9EZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -597,22 +597,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11995"
],
"x-ms-request-id": [
- "f1a43280-0bcf-41ca-a448-ac1579cda09f"
+ "d22435b8-6da9-4d2a-ad26-d484c48a065d"
],
"x-ms-correlation-request-id": [
- "f1a43280-0bcf-41ca-a448-ac1579cda09f"
+ "d22435b8-6da9-4d2a-ad26-d484c48a065d"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081831Z:f1a43280-0bcf-41ca-a448-ac1579cda09f"
+ "SOUTHEASTASIA:20191122T073855Z:d22435b8-6da9-4d2a-ad26-d484c48a065d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -621,7 +621,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:18:31 GMT"
+ "Fri, 22 Nov 2019 07:38:55 GMT"
],
"Expires": [
"-1"
@@ -634,15 +634,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9EZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -654,22 +654,193 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "3c916c5e-053c-4fde-83aa-1badcda6f21d"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c916c5e-053c-4fde-83aa-1badcda6f21d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T073911Z:3c916c5e-053c-4fde-83aa-1badcda6f21d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:39:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "4d41dc2f-c513-4811-bc71-1b71c91d94ee"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d41dc2f-c513-4811-bc71-1b71c91d94ee"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T073927Z:4d41dc2f-c513-4811-bc71-1b71c91d94ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:39:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "d52edf29-a632-44d2-9c64-8ddfe83f0885"
+ ],
+ "x-ms-correlation-request-id": [
+ "d52edf29-a632-44d2-9c64-8ddfe83f0885"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T073942Z:d52edf29-a632-44d2-9c64-8ddfe83f0885"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:39:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
],
"x-ms-request-id": [
- "5a58612d-ca03-4dfb-a955-2bb6e09b43e4"
+ "6ce54773-d37d-409a-a7de-5fef782d0468"
],
"x-ms-correlation-request-id": [
- "5a58612d-ca03-4dfb-a955-2bb6e09b43e4"
+ "6ce54773-d37d-409a-a7de-5fef782d0468"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081846Z:5a58612d-ca03-4dfb-a955-2bb6e09b43e4"
+ "SOUTHEASTASIA:20191122T073958Z:6ce54773-d37d-409a-a7de-5fef782d0468"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -678,7 +849,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:18:46 GMT"
+ "Fri, 22 Nov 2019 07:39:57 GMT"
],
"Expires": [
"-1"
@@ -691,15 +862,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9EZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -710,17 +881,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11990"
],
"x-ms-request-id": [
- "2f616b67-9675-44de-ada2-7006d74721d2"
+ "ba9af09e-117f-4378-903f-a53b24771107"
],
"x-ms-correlation-request-id": [
- "2f616b67-9675-44de-ada2-7006d74721d2"
+ "ba9af09e-117f-4378-903f-a53b24771107"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081902Z:2f616b67-9675-44de-ada2-7006d74721d2"
+ "SOUTHEASTASIA:20191122T074013Z:ba9af09e-117f-4378-903f-a53b24771107"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -729,7 +906,229 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:19:02 GMT"
+ "Fri, 22 Nov 2019 07:40:13 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "600018ac-c72b-414b-94e9-8ff15b505797"
+ ],
+ "x-ms-correlation-request-id": [
+ "600018ac-c72b-414b-94e9-8ff15b505797"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T074029Z:600018ac-c72b-414b-94e9-8ff15b505797"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:40:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "d58dc760-081a-457d-ab7c-1b8beb588075"
+ ],
+ "x-ms-correlation-request-id": [
+ "d58dc760-081a-457d-ab7c-1b8beb588075"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T074044Z:d58dc760-081a-457d-ab7c-1b8beb588075"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:40:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "cde7dc83-b45a-411d-ba83-5c4d2dafa407"
+ ],
+ "x-ms-correlation-request-id": [
+ "cde7dc83-b45a-411d-ba83-5c4d2dafa407"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T074100Z:cde7dc83-b45a-411d-ba83-5c4d2dafa407"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:40:59 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "5393d6c2-23d1-415d-ad4d-937ebcd74637"
+ ],
+ "x-ms-correlation-request-id": [
+ "5393d6c2-23d1-415d-ad4d-937ebcd74637"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T074115Z:5393d6c2-23d1-415d-ad4d-937ebcd74637"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:41:14 GMT"
],
"Expires": [
"-1"
@@ -742,15 +1141,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyODgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9EZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxMjQtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE1qUXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -762,16 +1161,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11985"
],
"x-ms-request-id": [
- "6cb1938f-a649-4bea-8bc3-d5bc11838142"
+ "c16b1bd8-e918-4458-b33b-6c26ec3ddc07"
],
"x-ms-correlation-request-id": [
- "6cb1938f-a649-4bea-8bc3-d5bc11838142"
+ "c16b1bd8-e918-4458-b33b-6c26ec3ddc07"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T081903Z:6cb1938f-a649-4bea-8bc3-d5bc11838142"
+ "SOUTHEASTASIA:20191122T074116Z:c16b1bd8-e918-4458-b33b-6c26ec3ddc07"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -780,7 +1179,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 08:19:02 GMT"
+ "Fri, 22 Nov 2019 07:41:15 GMT"
],
"Expires": [
"-1"
@@ -795,10 +1194,10 @@
],
"Names": {
"CreateResourceGroup": [
- "res288"
+ "res124"
],
"BlobServiceTest": [
- "sto3075"
+ "sto3775"
]
},
"Variables": {
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/Storage.Tests.FileServiceTests/FileSharesCreateDeleteListTest.json b/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/Storage.Tests.FileServiceTests/FileSharesCreateDeleteListTest.json
index e72639f99e10..bd6a57050161 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/Storage.Tests.FileServiceTests/FileSharesCreateDeleteListTest.json
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/Storage.Tests.FileServiceTests/FileSharesCreateDeleteListTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res1894?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczE4OTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res828?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczgyOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8993e593-be8f-4823-8b46-f1fed12697a1"
+ "7eea6868-0c1d-4424-959b-6b43a7aaaa67"
],
"Accept-Language": [
"en-US"
@@ -15,7 +15,7 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -33,16 +33,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1199"
],
"x-ms-request-id": [
- "b4d4a15c-f747-4683-b44e-bb88652491ee"
+ "7a604d72-3d79-4f86-a174-8e6eaa71d43a"
],
"x-ms-correlation-request-id": [
- "b4d4a15c-f747-4683-b44e-bb88652491ee"
+ "7a604d72-3d79-4f86-a174-8e6eaa71d43a"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090715Z:b4d4a15c-f747-4683-b44e-bb88652491ee"
+ "SOUTHEASTASIA:20191122T073511Z:7a604d72-3d79-4f86-a174-8e6eaa71d43a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,10 +51,10 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:15 GMT"
+ "Fri, 22 Nov 2019 07:35:11 GMT"
],
"Content-Length": [
- "168"
+ "166"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,17 +63,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894\",\r\n \"name\": \"res1894\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828\",\r\n \"name\": \"res828\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "caecb298-5fe0-40f4-8e5e-a40d267b14c6"
+ "67442b27-d33e-44da-aa21-25d14966b296"
],
"Accept-Language": [
"en-US"
@@ -81,8 +81,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,13 +99,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/1ec930b4-7fb4-4344-84d9-853c55a5c337?monitor=true&api-version=2019-06-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/aa3cb838-17e2-44a9-bd21-9290220f8337?monitor=true&api-version=2019-06-01"
],
"Retry-After": [
"17"
],
"x-ms-request-id": [
- "1ec930b4-7fb4-4344-84d9-853c55a5c337"
+ "aa3cb838-17e2-44a9-bd21-9290220f8337"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -114,19 +114,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1188"
+ "1198"
],
"x-ms-correlation-request-id": [
- "b62e22bd-603f-4937-8691-c408d72566bf"
+ "3213b84b-5097-4a8e-aa05-0213c3e0a78a"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090717Z:b62e22bd-603f-4937-8691-c408d72566bf"
+ "SOUTHEASTASIA:20191122T073518Z:3213b84b-5097-4a8e-aa05-0213c3e0a78a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:17 GMT"
+ "Fri, 22 Nov 2019 07:35:17 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -142,16 +142,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/1ec930b4-7fb4-4344-84d9-853c55a5c337?monitor=true&api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zLzFlYzkzMGI0LTdmYjQtNDM0NC04NGQ5LTg1M2M1NWE1YzMzNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/aa3cb838-17e2-44a9-bd21-9290220f8337?monitor=true&api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2FhM2NiODM4LTE3ZTItNDRhOS1iZDIxLTkyOTAyMjBmODMzNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -161,8 +161,14 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/aa3cb838-17e2-44a9-bd21-9290220f8337?monitor=true&api-version=2019-06-01"
+ ],
+ "Retry-After": [
+ "3"
+ ],
"x-ms-request-id": [
- "0afc0793-9e27-4f5b-a069-5d061c21d2c9"
+ "f6023814-744f-4771-940f-c3b06565c1c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,22 +177,79 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11999"
],
"x-ms-correlation-request-id": [
- "6ddb48f8-3e01-4494-89cc-110b090e55d6"
+ "d43a9781-7999-4e81-959e-4b37bb0ee0e7"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090735Z:6ddb48f8-3e01-4494-89cc-110b090e55d6"
+ "SOUTHEASTASIA:20191122T073535Z:d43a9781-7999-4e81-959e-4b37bb0ee0e7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:34 GMT"
+ "Fri, 22 Nov 2019 07:35:35 GMT"
+ ],
+ "Content-Type": [
+ "text/plain; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
],
"Content-Length": [
- "1153"
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/aa3cb838-17e2-44a9-bd21-9290220f8337?monitor=true&api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zL2FhM2NiODM4LTE3ZTItNDRhOS1iZDIxLTkyOTAyMjBmODMzNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2aff64a2-dc04-478a-b7ce-b093e1dbcf71"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "dbff7175-0275-4118-a515-ba3ba2e8d650"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T073538Z:dbff7175-0275-4118-a515-ba3ba2e8d650"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:35:38 GMT"
+ ],
+ "Content-Length": [
+ "1152"
],
"Content-Type": [
"application/json"
@@ -195,17 +258,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305\",\r\n \"name\": \"sto4305\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-10T09:07:17.3269393Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-10T09:07:17.3269393Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-10-10T09:07:17.2644846Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sto4305.blob.core.windows.net/\",\r\n \"queue\": \"https://sto4305.queue.core.windows.net/\",\r\n \"table\": \"https://sto4305.table.core.windows.net/\",\r\n \"file\": \"https://sto4305.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus(stage)\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459\",\r\n \"name\": \"sto5459\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-22T07:35:16.6110261Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-22T07:35:16.6110261Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-22T07:35:16.4547653Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sto5459.blob.core.windows.net/\",\r\n \"queue\": \"https://sto5459.queue.core.windows.net/\",\r\n \"table\": \"https://sto5459.table.core.windows.net/\",\r\n \"file\": \"https://sto5459.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus(stage)\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share6325?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1L2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTYzMjU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share8673?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTkvZmlsZVNlcnZpY2VzL2RlZmF1bHQvc2hhcmVzL3NoYXJlODY3Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
"RequestMethod": "PUT",
"RequestBody": "{}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e07afa7-7bec-4631-82d3-e53043fcbaae"
+ "23950274-f9bb-4510-b976-9a04e8645f48"
],
"Accept-Language": [
"en-US"
@@ -213,8 +276,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,10 +294,10 @@
"no-cache"
],
"ETag": [
- "\"0x8D74D614AE17692\""
+ "\"0x8D76F1E92AEFDD5\""
],
"x-ms-request-id": [
- "f6a2d1da-777c-4faf-8a6c-5f66e8aa5323"
+ "75e2918a-de9b-4227-a5a7-d8c3271cdac9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -243,22 +306,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1187"
+ "1197"
],
"x-ms-correlation-request-id": [
- "8833ea72-9bab-45fe-a78b-f08e289c2b3d"
+ "abf37fa0-99cd-43f8-bc1b-43e5de264774"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090736Z:8833ea72-9bab-45fe-a78b-f08e289c2b3d"
+ "SOUTHEASTASIA:20191122T073539Z:abf37fa0-99cd-43f8-bc1b-43e5de264774"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:35 GMT"
+ "Fri, 22 Nov 2019 07:35:39 GMT"
],
"Content-Length": [
- "255"
+ "254"
],
"Content-Type": [
"application/json"
@@ -267,17 +330,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share6325\",\r\n \"name\": \"share6325\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share8673\",\r\n \"name\": \"share8673\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share6325?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1L2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTYzMjU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share8673?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTkvZmlsZVNlcnZpY2VzL2RlZmF1bHQvc2hhcmVzL3NoYXJlODY3Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "792784d0-3bec-4f10-8dcf-d722b173086c"
+ "6e046dae-7246-4caf-b76b-a330537950bc"
],
"Accept-Language": [
"en-US"
@@ -285,8 +348,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -297,10 +360,10 @@
"no-cache"
],
"ETag": [
- "\"0x8D74D614AE17692\""
+ "\"0x8D76F1E92AEFDD5\""
],
"x-ms-request-id": [
- "f6818ca3-8266-4715-a77d-2be925842014"
+ "4b1eb623-70cf-49d2-94d2-08952b3d7c08"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -309,22 +372,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11997"
],
"x-ms-correlation-request-id": [
- "a740169d-0f1d-49c2-bc2a-9bff031c0215"
+ "45fb5516-3663-44fe-8257-79e4af4748b4"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090736Z:a740169d-0f1d-49c2-bc2a-9bff031c0215"
+ "SOUTHEASTASIA:20191122T073540Z:45fb5516-3663-44fe-8257-79e4af4748b4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:36 GMT"
+ "Fri, 22 Nov 2019 07:35:39 GMT"
],
"Content-Length": [
- "369"
+ "368"
],
"Content-Type": [
"application/json"
@@ -333,17 +396,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share6325\",\r\n \"name\": \"share6325\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D74D614AE17692\\\"\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2019-10-10T09:07:35Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share8673\",\r\n \"name\": \"share8673\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D76F1E92AEFDD5\\\"\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2019-11-22T07:35:39Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share67?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1L2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share7673?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTkvZmlsZVNlcnZpY2VzL2RlZmF1bHQvc2hhcmVzL3NoYXJlNzY3Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"shareQuota\": 500\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "14990909-3c0c-441c-aa90-933b57af9e88"
+ "f7321953-fed1-4e00-a81c-444a0f46322c"
],
"Accept-Language": [
"en-US"
@@ -351,8 +414,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -369,10 +432,10 @@
"no-cache"
],
"ETag": [
- "\"0x8D74D614B79716A\""
+ "\"0x8D76F1E933BAD57\""
],
"x-ms-request-id": [
- "9d53f25b-f485-44f8-a834-dd5da69ced75"
+ "847f9c65-7aa4-4724-91e7-3d1e07f19b45"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -381,22 +444,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1186"
+ "1196"
],
"x-ms-correlation-request-id": [
- "9a0cc2ec-fdd5-41d7-b541-b42e8d06cc72"
+ "c263481a-870d-4a13-a015-c56af6d4890a"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090737Z:9a0cc2ec-fdd5-41d7-b541-b42e8d06cc72"
+ "SOUTHEASTASIA:20191122T073540Z:c263481a-870d-4a13-a015-c56af6d4890a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:36 GMT"
+ "Fri, 22 Nov 2019 07:35:40 GMT"
],
"Content-Length": [
- "336"
+ "339"
],
"Content-Type": [
"application/json"
@@ -405,17 +468,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share67\",\r\n \"name\": \"share67\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"shareQuota\": 500\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share7673\",\r\n \"name\": \"share7673\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"shareQuota\": 500\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share67?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1L2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share7673?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTkvZmlsZVNlcnZpY2VzL2RlZmF1bHQvc2hhcmVzL3NoYXJlNzY3Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8496fa8c-f482-4403-ac94-8401e8906329"
+ "c9cf2227-3744-4548-8c3f-783a2ae86b6a"
],
"Accept-Language": [
"en-US"
@@ -423,8 +486,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -435,10 +498,10 @@
"no-cache"
],
"ETag": [
- "\"0x8D74D614B79716A\""
+ "\"0x8D76F1E933BAD57\""
],
"x-ms-request-id": [
- "4ec8b790-90e1-4233-a4d2-1a7e46b9ff49"
+ "84d853e6-b25f-46ef-b0bc-6ef384d8371a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -447,22 +510,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11996"
],
"x-ms-correlation-request-id": [
- "68726687-3103-47a2-b41f-a6135f3124f2"
+ "a1647de9-69e5-47e4-947f-046a854d1b5b"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090737Z:68726687-3103-47a2-b41f-a6135f3124f2"
+ "SOUTHEASTASIA:20191122T073541Z:a1647de9-69e5-47e4-947f-046a854d1b5b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:37 GMT"
+ "Fri, 22 Nov 2019 07:35:40 GMT"
],
"Content-Length": [
- "417"
+ "420"
],
"Content-Type": [
"application/json"
@@ -471,17 +534,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share67\",\r\n \"name\": \"share67\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D74D614B79716A\\\"\",\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"lastModifiedTime\": \"2019-10-10T09:07:36Z\",\r\n \"shareQuota\": 500\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share7673\",\r\n \"name\": \"share7673\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D76F1E933BAD57\\\"\",\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"lastModifiedTime\": \"2019-11-22T07:35:40Z\",\r\n \"shareQuota\": 500\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share6325?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1L2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTYzMjU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share8673?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTkvZmlsZVNlcnZpY2VzL2RlZmF1bHQvc2hhcmVzL3NoYXJlODY3Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ebfe25fc-1ce3-47b8-81f7-165f92eaf1bd"
+ "5972f93a-ec17-4a96-b477-c93e17ce27c3"
],
"Accept-Language": [
"en-US"
@@ -489,8 +552,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -501,7 +564,7 @@
"no-cache"
],
"x-ms-request-id": [
- "c33d96b1-c315-4fc4-89a5-cf91f9b877f7"
+ "1c51dd3a-243b-44a3-ac48-7e216d613ec5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -510,19 +573,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14990"
+ "14999"
],
"x-ms-correlation-request-id": [
- "2586f5dd-bec9-4dbb-b942-8201fdf756c5"
+ "635a0f39-b48b-4a11-a93f-ce0fed6536d9"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090738Z:2586f5dd-bec9-4dbb-b942-8201fdf756c5"
+ "SOUTHEASTASIA:20191122T073541Z:635a0f39-b48b-4a11-a93f-ce0fed6536d9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:37 GMT"
+ "Fri, 22 Nov 2019 07:35:41 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -538,13 +601,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1L2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTkvZmlsZVNlcnZpY2VzL2RlZmF1bHQvc2hhcmVzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9bfc4c34-36ee-48dd-80ea-dec47ab594fa"
+ "d16587d5-3a54-4541-9004-1a460650576e"
],
"Accept-Language": [
"en-US"
@@ -552,8 +615,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -564,7 +627,7 @@
"no-cache"
],
"x-ms-request-id": [
- "1d8148ca-0b06-4180-9867-5fb2ec9ce883"
+ "1c0982b3-9f88-4288-8368-e14ee20b1064"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -573,22 +636,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11995"
],
"x-ms-correlation-request-id": [
- "1358b78b-19b8-4bf5-9cd3-2a0fc51e1a9b"
+ "d642aba6-ab61-4b27-924e-de1ea6d16b35"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090738Z:1358b78b-19b8-4bf5-9cd3-2a0fc51e1a9b"
+ "SOUTHEASTASIA:20191122T073541Z:d642aba6-ab61-4b27-924e-de1ea6d16b35"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:37 GMT"
+ "Fri, 22 Nov 2019 07:35:41 GMT"
],
"Content-Length": [
- "429"
+ "432"
],
"Content-Type": [
"application/json"
@@ -597,17 +660,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share67\",\r\n \"name\": \"share67\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D74D614B79716A\\\"\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2019-10-10T09:07:36Z\",\r\n \"shareQuota\": 500,\r\n \"enabledProtocols\": \"SMB\",\r\n \"rootSquash\": \"NoRootSquash\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share7673\",\r\n \"name\": \"share7673\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D76F1E933BAD57\\\"\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2019-11-22T07:35:40Z\",\r\n \"shareQuota\": 500,\r\n \"enabledProtocols\": \"SMB\",\r\n \"rootSquash\": \"NoRootSquash\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1L2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTkvZmlsZVNlcnZpY2VzL2RlZmF1bHQvc2hhcmVzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a6ba3549-134d-474e-86fe-c8c8e3a42b7f"
+ "cdf10f06-4a77-465f-9a72-644c446c2ba5"
],
"Accept-Language": [
"en-US"
@@ -615,8 +678,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -627,7 +690,7 @@
"no-cache"
],
"x-ms-request-id": [
- "29e1f0cf-af48-4235-a081-a5d73da0e2c6"
+ "4dc8c5a3-8060-4956-8ff3-f65eac19bd5c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -636,19 +699,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11994"
],
"x-ms-correlation-request-id": [
- "0b45eb31-f8b2-48a6-a96b-d33cbb26fd7c"
+ "c7747cec-8f2a-468d-b927-2c7cc3643398"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090739Z:0b45eb31-f8b2-48a6-a96b-d33cbb26fd7c"
+ "SOUTHEASTASIA:20191122T073542Z:c7747cec-8f2a-468d-b927-2c7cc3643398"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:38 GMT"
+ "Fri, 22 Nov 2019 07:35:42 GMT"
],
"Content-Length": [
"12"
@@ -664,13 +727,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/share67?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1L2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTY3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/share7673?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTkvZmlsZVNlcnZpY2VzL2RlZmF1bHQvc2hhcmVzL3NoYXJlNzY3Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c4b6f5d1-b575-4d5d-9fd9-b9430575565b"
+ "de8ec65c-4164-4a6b-a46e-e75592859d13"
],
"Accept-Language": [
"en-US"
@@ -678,8 +741,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -690,7 +753,7 @@
"no-cache"
],
"x-ms-request-id": [
- "1f220208-7329-46ca-b471-aff6e8fd109d"
+ "4f2d64d4-dfee-48f3-8a60-a8c029809393"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -699,19 +762,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14989"
+ "14998"
],
"x-ms-correlation-request-id": [
- "9c5f9df1-b306-4bc6-b6b5-57752c130341"
+ "9f3be133-fe4c-4113-83c9-0181b6bc6781"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090738Z:9c5f9df1-b306-4bc6-b6b5-57752c130341"
+ "SOUTHEASTASIA:20191122T073542Z:9f3be133-fe4c-4113-83c9-0181b6bc6781"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:38 GMT"
+ "Fri, 22 Nov 2019 07:35:41 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -727,13 +790,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305/fileServices/default/shares/notexistshare?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1L2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9ub3RleGlzdHNoYXJlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459/fileServices/default/shares/notexistshare?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTkvZmlsZVNlcnZpY2VzL2RlZmF1bHQvc2hhcmVzL25vdGV4aXN0c2hhcmU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00796899-4a0c-4a04-b108-31c33332b168"
+ "98f5fb4f-dd17-489e-8fc7-761004eeb89d"
],
"Accept-Language": [
"en-US"
@@ -741,8 +804,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -753,7 +816,7 @@
"no-cache"
],
"x-ms-request-id": [
- "4d928f6f-bf7b-4999-9203-e8875f0930bc"
+ "804ca660-64a5-4e40-be0b-60f7229b1dae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -762,19 +825,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14988"
+ "14997"
],
"x-ms-correlation-request-id": [
- "7ffa287c-73e0-445e-84f7-b57e2a2d1768"
+ "926ae388-dad8-4558-ad3e-83b8fe21973c"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090739Z:7ffa287c-73e0-445e-84f7-b57e2a2d1768"
+ "SOUTHEASTASIA:20191122T073542Z:926ae388-dad8-4558-ad3e-83b8fe21973c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:39 GMT"
+ "Fri, 22 Nov 2019 07:35:42 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -787,13 +850,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1894/providers/Microsoft.Storage/storageAccounts/sto4305?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczE4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80MzA1P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res828/providers/Microsoft.Storage/storageAccounts/sto5459?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczgyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0bzU0NTk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "635ac3ab-f33f-4790-8ffe-66203255acff"
+ "c4994801-012f-429a-a7ae-91442b6a0bf2"
],
"Accept-Language": [
"en-US"
@@ -801,8 +864,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -813,7 +876,7 @@
"no-cache"
],
"x-ms-request-id": [
- "c22845b6-9357-4e73-8423-f58442565f4d"
+ "e7c8e349-9960-494a-9355-06225a6b5e7f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -822,19 +885,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14987"
+ "14996"
],
"x-ms-correlation-request-id": [
- "0d810311-61cb-431e-b99e-756a2a2653bc"
+ "37617cc8-3aa1-4301-b4e8-8197841d3918"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090741Z:0d810311-61cb-431e-b99e-756a2a2653bc"
+ "SOUTHEASTASIA:20191122T073550Z:37617cc8-3aa1-4301-b4e8-8197841d3918"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:41 GMT"
+ "Fri, 22 Nov 2019 07:35:49 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -850,13 +913,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res1894?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczE4OTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res828?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczgyOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "023b011c-e998-4a99-884c-3fd83f2b9b93"
+ "92875030-e403-40d6-b0f7-0de2e1cb887a"
],
"Accept-Language": [
"en-US"
@@ -864,7 +927,7 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -876,22 +939,79 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14986"
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "e3fde0e6-f1f8-4e92-8dbd-edc90514bb02"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3fde0e6-f1f8-4e92-8dbd-edc90514bb02"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T073555Z:e3fde0e6-f1f8-4e92-8dbd-edc90514bb02"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:35:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNE1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
],
"x-ms-request-id": [
- "bf4645a7-6dd6-45a1-b9e9-00d6bef95695"
+ "d37e8af2-8bcb-4a7c-b9a4-e2b168c1db15"
],
"x-ms-correlation-request-id": [
- "bf4645a7-6dd6-45a1-b9e9-00d6bef95695"
+ "d37e8af2-8bcb-4a7c-b9a4-e2b168c1db15"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090746Z:bf4645a7-6dd6-45a1-b9e9-00d6bef95695"
+ "SOUTHEASTASIA:20191122T073611Z:d37e8af2-8bcb-4a7c-b9a4-e2b168c1db15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -900,7 +1020,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:07:46 GMT"
+ "Fri, 22 Nov 2019 07:36:10 GMT"
],
"Expires": [
"-1"
@@ -913,15 +1033,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE9EazBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNE1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -933,22 +1053,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11992"
],
"x-ms-request-id": [
- "53868750-84f4-4378-b94e-331aef0e3dfc"
+ "0c69aec2-b7f3-40e2-b8f8-e4ba579238e4"
],
"x-ms-correlation-request-id": [
- "53868750-84f4-4378-b94e-331aef0e3dfc"
+ "0c69aec2-b7f3-40e2-b8f8-e4ba579238e4"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090802Z:53868750-84f4-4378-b94e-331aef0e3dfc"
+ "SOUTHEASTASIA:20191122T073626Z:0c69aec2-b7f3-40e2-b8f8-e4ba579238e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -957,7 +1077,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:08:01 GMT"
+ "Fri, 22 Nov 2019 07:36:26 GMT"
],
"Expires": [
"-1"
@@ -970,15 +1090,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE9EazBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNE1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -990,22 +1110,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11991"
],
"x-ms-request-id": [
- "771be948-a0cd-4941-862d-893d37fbe150"
+ "6ac86998-9e2c-43c1-8597-c873d5d6f6f2"
],
"x-ms-correlation-request-id": [
- "771be948-a0cd-4941-862d-893d37fbe150"
+ "6ac86998-9e2c-43c1-8597-c873d5d6f6f2"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090817Z:771be948-a0cd-4941-862d-893d37fbe150"
+ "SOUTHEASTASIA:20191122T073642Z:6ac86998-9e2c-43c1-8597-c873d5d6f6f2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1014,7 +1134,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:08:16 GMT"
+ "Fri, 22 Nov 2019 07:36:41 GMT"
],
"Expires": [
"-1"
@@ -1027,15 +1147,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE9EazBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNE1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1047,22 +1167,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11990"
],
"x-ms-request-id": [
- "19dfbf2b-4e75-4801-9779-d2c8cb5c0e18"
+ "cf23cc7f-2e0b-4966-b340-fc45811db91c"
],
"x-ms-correlation-request-id": [
- "19dfbf2b-4e75-4801-9779-d2c8cb5c0e18"
+ "cf23cc7f-2e0b-4966-b340-fc45811db91c"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090833Z:19dfbf2b-4e75-4801-9779-d2c8cb5c0e18"
+ "SOUTHEASTASIA:20191122T073657Z:cf23cc7f-2e0b-4966-b340-fc45811db91c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1071,7 +1191,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:08:32 GMT"
+ "Fri, 22 Nov 2019 07:36:57 GMT"
],
"Expires": [
"-1"
@@ -1084,15 +1204,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE9EazBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNE1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1104,22 +1224,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11989"
],
"x-ms-request-id": [
- "45899ac9-2db1-404e-8f60-14191a108aa0"
+ "1feb8f8d-8233-437c-bde0-af1a8d2307c0"
],
"x-ms-correlation-request-id": [
- "45899ac9-2db1-404e-8f60-14191a108aa0"
+ "1feb8f8d-8233-437c-bde0-af1a8d2307c0"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090848Z:45899ac9-2db1-404e-8f60-14191a108aa0"
+ "SOUTHEASTASIA:20191122T073713Z:1feb8f8d-8233-437c-bde0-af1a8d2307c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1128,7 +1248,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:08:48 GMT"
+ "Fri, 22 Nov 2019 07:37:12 GMT"
],
"Expires": [
"-1"
@@ -1141,15 +1261,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE9EazBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNE1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1161,16 +1281,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11988"
],
"x-ms-request-id": [
- "6ff99e93-f214-428f-95f8-31efdd79378d"
+ "36d77fc0-a95e-4b20-84fd-7919138ea119"
],
"x-ms-correlation-request-id": [
- "6ff99e93-f214-428f-95f8-31efdd79378d"
+ "36d77fc0-a95e-4b20-84fd-7919138ea119"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090904Z:6ff99e93-f214-428f-95f8-31efdd79378d"
+ "SOUTHEASTASIA:20191122T073728Z:36d77fc0-a95e-4b20-84fd-7919138ea119"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1179,7 +1299,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:09:04 GMT"
+ "Fri, 22 Nov 2019 07:37:27 GMT"
],
"Expires": [
"-1"
@@ -1192,15 +1312,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMxODk0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeE9EazBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM4MjgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNE1qZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -1212,16 +1332,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11987"
],
"x-ms-request-id": [
- "fb9632b5-71ac-4e73-b390-2d73b5d8d82a"
+ "1099fd62-0c19-445c-aefa-3cfef54ea2a7"
],
"x-ms-correlation-request-id": [
- "fb9632b5-71ac-4e73-b390-2d73b5d8d82a"
+ "1099fd62-0c19-445c-aefa-3cfef54ea2a7"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090904Z:fb9632b5-71ac-4e73-b390-2d73b5d8d82a"
+ "SOUTHEASTASIA:20191122T073729Z:1099fd62-0c19-445c-aefa-3cfef54ea2a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1230,7 +1350,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:09:04 GMT"
+ "Fri, 22 Nov 2019 07:37:28 GMT"
],
"Expires": [
"-1"
@@ -1245,12 +1365,12 @@
],
"Names": {
"CreateResourceGroup": [
- "res1894"
+ "res828"
],
"FileSharesCreateDeleteListTest": [
- "sto4305",
- "share6325",
- "share67"
+ "sto5459",
+ "share8673",
+ "share7673"
]
},
"Variables": {
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/Storage.Tests.FileServiceTests/FileSharesUpdateGetTest.json b/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/Storage.Tests.FileServiceTests/FileSharesUpdateGetTest.json
index 0e241ca2cc35..20e7c92094bc 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/Storage.Tests.FileServiceTests/FileSharesUpdateGetTest.json
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/tests/SessionRecords/Storage.Tests.FileServiceTests/FileSharesUpdateGetTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res6238?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczYyMzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res2964?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczI5NjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "512dfeab-1642-414c-9257-eadf1563f152"
+ "e20f57e9-268e-4c4f-9e37-a4401a735b20"
],
"Accept-Language": [
"en-US"
@@ -15,7 +15,7 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -33,16 +33,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1199"
],
"x-ms-request-id": [
- "52d1cc0c-fc81-4656-9573-741bc3071458"
+ "1f8f76a9-2d70-4ab6-bd35-985f4eed73da"
],
"x-ms-correlation-request-id": [
- "52d1cc0c-fc81-4656-9573-741bc3071458"
+ "1f8f76a9-2d70-4ab6-bd35-985f4eed73da"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090356Z:52d1cc0c-fc81-4656-9573-741bc3071458"
+ "SOUTHEASTASIA:20191122T075559Z:1f8f76a9-2d70-4ab6-bd35-985f4eed73da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:03:56 GMT"
+ "Fri, 22 Nov 2019 07:55:58 GMT"
],
"Content-Length": [
"168"
@@ -63,17 +63,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238\",\r\n \"name\": \"res6238\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964\",\r\n \"name\": \"res2964\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238/providers/Microsoft.Storage/storageAccounts/sto4483?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczYyMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80NDgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964/providers/Microsoft.Storage/storageAccounts/sto5963?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG81OTYzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"largeFileSharesState\": \"Enabled\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6ae4210-f038-4e73-9943-9aedd3e89a33"
+ "3af2cb61-0dc3-4f4a-994b-0e52e6c35d95"
],
"Accept-Language": [
"en-US"
@@ -81,14 +81,14 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "168"
+ "166"
]
},
"ResponseHeaders": {
@@ -99,13 +99,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/724e3b47-70a2-457d-9e82-3198c29b14af?monitor=true&api-version=2019-06-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/westeurope/asyncoperations/983aac3d-cbd6-473b-a62d-9778409416f5?monitor=true&api-version=2019-06-01"
],
"Retry-After": [
"17"
],
"x-ms-request-id": [
- "724e3b47-70a2-457d-9e82-3198c29b14af"
+ "983aac3d-cbd6-473b-a62d-9778409416f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -114,19 +114,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1198"
],
"x-ms-correlation-request-id": [
- "40cfc780-eab3-4166-8b2c-b5a637fd45a4"
+ "4bcfc656-d5b0-4542-8fb6-232d520267df"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090359Z:40cfc780-eab3-4166-8b2c-b5a637fd45a4"
+ "SOUTHEASTASIA:20191122T075604Z:4bcfc656-d5b0-4542-8fb6-232d520267df"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:03:59 GMT"
+ "Fri, 22 Nov 2019 07:56:04 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -142,16 +142,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/724e3b47-70a2-457d-9e82-3198c29b14af?monitor=true&api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zLzcyNGUzYjQ3LTcwYTItNDU3ZC05ZTgyLTMxOThjMjliMTRhZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/westeurope/asyncoperations/983aac3d-cbd6-473b-a62d-9778409416f5?monitor=true&api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS9hc3luY29wZXJhdGlvbnMvOTgzYWFjM2QtY2JkNi00NzNiLWE2MmQtOTc3ODQwOTQxNmY1P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -162,7 +162,7 @@
"no-cache"
],
"x-ms-request-id": [
- "e3b71ac9-3370-495d-a5ff-09450dc660da"
+ "925f2a23-b6b6-48c3-b8eb-79dce632b671"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,22 +171,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11999"
],
"x-ms-correlation-request-id": [
- "81e866c3-08b1-4f49-9e3d-8ddc27e73b1a"
+ "c1ff8d26-d8fb-4ad5-8535-375528b7f6c5"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090417Z:81e866c3-08b1-4f49-9e3d-8ddc27e73b1a"
+ "SOUTHEASTASIA:20191122T075621Z:c1ff8d26-d8fb-4ad5-8535-375528b7f6c5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:04:16 GMT"
+ "Fri, 22 Nov 2019 07:56:21 GMT"
],
"Content-Length": [
- "1153"
+ "1187"
],
"Content-Type": [
"application/json"
@@ -195,17 +195,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238/providers/Microsoft.Storage/storageAccounts/sto4483\",\r\n \"name\": \"sto4483\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-10T09:03:59.2279235Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-10T09:03:59.2279235Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-10-10T09:03:59.1810412Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sto4483.blob.core.windows.net/\",\r\n \"queue\": \"https://sto4483.queue.core.windows.net/\",\r\n \"table\": \"https://sto4483.table.core.windows.net/\",\r\n \"file\": \"https://sto4483.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus(stage)\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964/providers/Microsoft.Storage/storageAccounts/sto5963\",\r\n \"name\": \"sto5963\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"largeFileSharesState\": \"Enabled\",\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-22T07:56:03.4936015Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-22T07:56:03.4936015Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-22T07:56:03.431109Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://sto5963.dfs.core.windows.net/\",\r\n \"web\": \"https://sto5963.z6.web.core.windows.net/\",\r\n \"blob\": \"https://sto5963.blob.core.windows.net/\",\r\n \"queue\": \"https://sto5963.queue.core.windows.net/\",\r\n \"table\": \"https://sto5963.table.core.windows.net/\",\r\n \"file\": \"https://sto5963.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238/providers/Microsoft.Storage/storageAccounts/sto4483/fileServices/default/shares/share2025?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczYyMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80NDgzL2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTIwMjU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964/providers/Microsoft.Storage/storageAccounts/sto5963/fileServices/default/shares/share7628?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG81OTYzL2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTc2Mjg/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a907a2e6-0152-4947-ba59-6186e4926c12"
+ "aeadb76a-e96d-4d46-a0f2-194eb071ece5"
],
"Accept-Language": [
"en-US"
@@ -213,8 +213,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,10 +231,10 @@
"no-cache"
],
"ETag": [
- "\"0x8D74D60D4CC8A22\""
+ "\"0x8D76F21796E942A\""
],
"x-ms-request-id": [
- "4f347ab6-1e9f-49ef-9cf4-f620b053a784"
+ "ab8d8236-3533-4789-a8db-b2aab1872d2c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -243,19 +243,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1197"
],
"x-ms-correlation-request-id": [
- "3ef6f8fc-5c74-4513-9aca-1ee71fb00a55"
+ "da583a1a-195a-4eea-bdb2-fafc3a2266da"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090418Z:3ef6f8fc-5c74-4513-9aca-1ee71fb00a55"
+ "SOUTHEASTASIA:20191122T075625Z:da583a1a-195a-4eea-bdb2-fafc3a2266da"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:04:18 GMT"
+ "Fri, 22 Nov 2019 07:56:25 GMT"
],
"Content-Length": [
"255"
@@ -267,17 +267,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238/providers/Microsoft.Storage/storageAccounts/sto4483/fileServices/default/shares/share2025\",\r\n \"name\": \"share2025\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964/providers/Microsoft.Storage/storageAccounts/sto5963/fileServices/default/shares/share7628\",\r\n \"name\": \"share7628\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238/providers/Microsoft.Storage/storageAccounts/sto4483/fileServices/default/shares/share2025?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczYyMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80NDgzL2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTIwMjU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964/providers/Microsoft.Storage/storageAccounts/sto5963/fileServices/default/shares/share7628?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG81OTYzL2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTc2Mjg/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"shareQuota\": 501\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"shareQuota\": 5200\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c911d629-f24d-4d7a-948c-0426aa2f320f"
+ "cf4bf88e-424d-478c-8118-8caedfb0400f"
],
"Accept-Language": [
"en-US"
@@ -285,14 +285,14 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "135"
+ "136"
]
},
"ResponseHeaders": {
@@ -303,10 +303,10 @@
"no-cache"
],
"ETag": [
- "\"0x8D74D60D533FEB8\""
+ "\"0x8D76F2179A6C551\""
],
"x-ms-request-id": [
- "8f422390-b5b7-4a26-9391-8d43ac0792dd"
+ "3296ecd4-8888-4553-a1aa-1ad10bc326cb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -315,22 +315,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1196"
],
"x-ms-correlation-request-id": [
- "e2d9b822-32a0-48cb-bdf4-3dcbd2d6246c"
+ "9375b859-3811-412a-a2c8-360b563bea82"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090418Z:e2d9b822-32a0-48cb-bdf4-3dcbd2d6246c"
+ "SOUTHEASTASIA:20191122T075626Z:9375b859-3811-412a-a2c8-360b563bea82"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:04:18 GMT"
+ "Fri, 22 Nov 2019 07:56:26 GMT"
],
"Content-Length": [
- "340"
+ "341"
],
"Content-Type": [
"application/json"
@@ -339,17 +339,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238/providers/Microsoft.Storage/storageAccounts/sto4483/fileServices/default/shares/share2025\",\r\n \"name\": \"share2025\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"shareQuota\": 501\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964/providers/Microsoft.Storage/storageAccounts/sto5963/fileServices/default/shares/share7628\",\r\n \"name\": \"share7628\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"shareQuota\": 5200\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238/providers/Microsoft.Storage/storageAccounts/sto4483/fileServices/default/shares/share2025?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczYyMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80NDgzL2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTIwMjU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964/providers/Microsoft.Storage/storageAccounts/sto5963/fileServices/default/shares/share7628?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG81OTYzL2ZpbGVTZXJ2aWNlcy9kZWZhdWx0L3NoYXJlcy9zaGFyZTc2Mjg/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "115cbe7f-cec3-4fca-b29f-357e5e3dbddb"
+ "2dc8372a-5dfe-4339-b6ac-2098f47a1ae6"
],
"Accept-Language": [
"en-US"
@@ -357,8 +357,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -369,10 +369,10 @@
"no-cache"
],
"ETag": [
- "\"0x8D74D60D533FEB8\""
+ "\"0x8D76F2179A6C551\""
],
"x-ms-request-id": [
- "6f79fb64-921e-4095-bbc4-bbdb470bc387"
+ "a2ba7fa0-282c-42eb-a6f1-6e01364c076b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -381,22 +381,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11998"
],
"x-ms-correlation-request-id": [
- "a614a1d4-4fe2-4c60-ac28-531e0a9a587a"
+ "61d3c3c9-7f23-460b-a16e-5f5991e849eb"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090419Z:a614a1d4-4fe2-4c60-ac28-531e0a9a587a"
+ "SOUTHEASTASIA:20191122T075626Z:61d3c3c9-7f23-460b-a16e-5f5991e849eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:04:18 GMT"
+ "Fri, 22 Nov 2019 07:56:26 GMT"
],
"Content-Length": [
- "421"
+ "422"
],
"Content-Type": [
"application/json"
@@ -405,17 +405,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238/providers/Microsoft.Storage/storageAccounts/sto4483/fileServices/default/shares/share2025\",\r\n \"name\": \"share2025\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D74D60D533FEB8\\\"\",\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"lastModifiedTime\": \"2019-10-10T09:04:18Z\",\r\n \"shareQuota\": 501\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964/providers/Microsoft.Storage/storageAccounts/sto5963/fileServices/default/shares/share7628\",\r\n \"name\": \"share7628\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D76F2179A6C551\\\"\",\r\n \"properties\": {\r\n \"metadata\": {\r\n \"metadata1\": \"true\",\r\n \"metadata2\": \"value2\"\r\n },\r\n \"lastModifiedTime\": \"2019-11-22T07:56:26Z\",\r\n \"shareQuota\": 5200\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6238/providers/Microsoft.Storage/storageAccounts/sto4483?api-version=2019-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczYyMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG80NDgzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2964/providers/Microsoft.Storage/storageAccounts/sto5963?api-version=2019-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3JlczI5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG81OTYzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b7982c65-be93-4179-b70d-76509746b852"
+ "704326e4-f515-40de-a513-1c4d725ee3da"
],
"Accept-Language": [
"en-US"
@@ -423,8 +423,8 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/14.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/14.1.0.0"
]
},
"ResponseHeaders": {
@@ -435,7 +435,7 @@
"no-cache"
],
"x-ms-request-id": [
- "a0b4fcf9-d682-4626-80d5-016ba49076a8"
+ "ba0ca839-e6d7-4c2e-9484-6b0ef39245ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,19 +444,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14992"
+ "14997"
],
"x-ms-correlation-request-id": [
- "c3ca2ab4-8d18-4391-9269-76a8fd410361"
+ "f074d4e5-7d75-41cd-8d4b-b11bdfe3cc7a"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090421Z:c3ca2ab4-8d18-4391-9269-76a8fd410361"
+ "SOUTHEASTASIA:20191122T075630Z:f074d4e5-7d75-41cd-8d4b-b11bdfe3cc7a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:04:21 GMT"
+ "Fri, 22 Nov 2019 07:56:30 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -472,13 +472,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res6238?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczYyMzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/res2964?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3JlczI5NjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0748d6d7-7cb4-4816-b00b-390024c60e70"
+ "3ab3392b-ccac-4d69-a198-e054e77fe1db"
],
"Accept-Language": [
"en-US"
@@ -486,7 +486,7 @@
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -498,22 +498,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM2MjM4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14991"
+ "14996"
],
"x-ms-request-id": [
- "ac2d93ec-8c72-4b65-89a8-7a17287911f1"
+ "a82d26f0-ba88-4888-acdd-5e28ece6c45a"
],
"x-ms-correlation-request-id": [
- "ac2d93ec-8c72-4b65-89a8-7a17287911f1"
+ "a82d26f0-ba88-4888-acdd-5e28ece6c45a"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090426Z:ac2d93ec-8c72-4b65-89a8-7a17287911f1"
+ "SOUTHEASTASIA:20191122T075635Z:a82d26f0-ba88-4888-acdd-5e28ece6c45a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -522,7 +522,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:04:26 GMT"
+ "Fri, 22 Nov 2019 07:56:35 GMT"
],
"Expires": [
"-1"
@@ -535,15 +535,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM2MjM4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNMk1qTTRMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9UWTBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -555,22 +555,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM2MjM4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11997"
],
"x-ms-request-id": [
- "e3de6ab1-81bb-4556-9a2a-17daf10fa4eb"
+ "cbe80769-ed93-4a38-a87d-91b17559a16f"
],
"x-ms-correlation-request-id": [
- "e3de6ab1-81bb-4556-9a2a-17daf10fa4eb"
+ "cbe80769-ed93-4a38-a87d-91b17559a16f"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090442Z:e3de6ab1-81bb-4556-9a2a-17daf10fa4eb"
+ "SOUTHEASTASIA:20191122T075650Z:cbe80769-ed93-4a38-a87d-91b17559a16f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -579,7 +579,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:04:41 GMT"
+ "Fri, 22 Nov 2019 07:56:50 GMT"
],
"Expires": [
"-1"
@@ -592,15 +592,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM2MjM4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNMk1qTTRMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9UWTBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -612,22 +612,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM2MjM4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11996"
],
"x-ms-request-id": [
- "47dec99f-6fde-4f85-8c24-94b84945d964"
+ "7ba05cd4-7194-4d8b-9c8c-9d9634437796"
],
"x-ms-correlation-request-id": [
- "47dec99f-6fde-4f85-8c24-94b84945d964"
+ "7ba05cd4-7194-4d8b-9c8c-9d9634437796"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090457Z:47dec99f-6fde-4f85-8c24-94b84945d964"
+ "SOUTHEASTASIA:20191122T075706Z:7ba05cd4-7194-4d8b-9c8c-9d9634437796"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -636,7 +636,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:04:56 GMT"
+ "Fri, 22 Nov 2019 07:57:05 GMT"
],
"Expires": [
"-1"
@@ -649,15 +649,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM2MjM4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNMk1qTTRMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9UWTBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -669,22 +669,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM2MjM4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11995"
],
"x-ms-request-id": [
- "e0b73cba-0a99-414f-b1ac-6577d5901a84"
+ "f2b046cd-4c87-4635-85b1-f67fa14278f6"
],
"x-ms-correlation-request-id": [
- "e0b73cba-0a99-414f-b1ac-6577d5901a84"
+ "f2b046cd-4c87-4635-85b1-f67fa14278f6"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090513Z:e0b73cba-0a99-414f-b1ac-6577d5901a84"
+ "SOUTHEASTASIA:20191122T075722Z:f2b046cd-4c87-4635-85b1-f67fa14278f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -693,7 +693,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:05:12 GMT"
+ "Fri, 22 Nov 2019 07:57:21 GMT"
],
"Expires": [
"-1"
@@ -706,15 +706,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM2MjM4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNMk1qTTRMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9UWTBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -725,17 +725,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11994"
],
"x-ms-request-id": [
- "f3f6d5b7-018a-4e0a-91d9-b455e9206c81"
+ "f39e53f3-d7d5-4d3d-a16b-367e297774d3"
],
"x-ms-correlation-request-id": [
- "f3f6d5b7-018a-4e0a-91d9-b455e9206c81"
+ "f39e53f3-d7d5-4d3d-a16b-367e297774d3"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090528Z:f3f6d5b7-018a-4e0a-91d9-b455e9206c81"
+ "SOUTHEASTASIA:20191122T075737Z:f39e53f3-d7d5-4d3d-a16b-367e297774d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -744,7 +750,58 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:05:28 GMT"
+ "Fri, 22 Nov 2019 07:57:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9UWTBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27817.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "a853d02d-c7dd-4223-8092-2c35f678d6b2"
+ ],
+ "x-ms-correlation-request-id": [
+ "a853d02d-c7dd-4223-8092-2c35f678d6b2"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHEASTASIA:20191122T075753Z:a853d02d-c7dd-4223-8092-2c35f678d6b2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 22 Nov 2019 07:57:52 GMT"
],
"Expires": [
"-1"
@@ -757,15 +814,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM2MjM4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNMk1qTTRMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVMyOTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNeU9UWTBMVVZCVTFSVlV6SWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pJaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.27817.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18362.",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
]
},
@@ -777,16 +834,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11992"
],
"x-ms-request-id": [
- "c6f4ef7e-3e4f-4687-88a0-f33b5f5dc67e"
+ "36526386-6a6d-4c1d-949b-8a0acd3b79e1"
],
"x-ms-correlation-request-id": [
- "c6f4ef7e-3e4f-4687-88a0-f33b5f5dc67e"
+ "36526386-6a6d-4c1d-949b-8a0acd3b79e1"
],
"x-ms-routing-request-id": [
- "SOUTHEASTASIA:20191010T090529Z:c6f4ef7e-3e4f-4687-88a0-f33b5f5dc67e"
+ "SOUTHEASTASIA:20191122T075753Z:36526386-6a6d-4c1d-949b-8a0acd3b79e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -795,7 +852,7 @@
"nosniff"
],
"Date": [
- "Thu, 10 Oct 2019 09:05:29 GMT"
+ "Fri, 22 Nov 2019 07:57:53 GMT"
],
"Expires": [
"-1"
@@ -810,11 +867,11 @@
],
"Names": {
"CreateResourceGroup": [
- "res6238"
+ "res2964"
],
"FileSharesUpdateGetTest": [
- "sto4483",
- "share2025"
+ "sto5963",
+ "share7628"
]
},
"Variables": {
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/tests/Tests/BlobServiceTests.cs b/sdk/storage/Microsoft.Azure.Management.Storage/tests/Tests/BlobServiceTests.cs
index 63c23debb509..5024130a3fff 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/tests/Tests/BlobServiceTests.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/tests/Tests/BlobServiceTests.cs
@@ -658,6 +658,7 @@ public void BlobServiceTest()
Assert.Null(properties1.DeleteRetentionPolicy.Days);
Assert.Null(properties1.DefaultServiceVersion);
Assert.Equal(0, properties1.Cors.CorsRulesProperty.Count);
+ Assert.Equal(parameters.Sku.Name, properties1.Sku.Name);
//Assert.Null(properties1.AutomaticSnapshotPolicyEnabled);
BlobServiceProperties properties2 = properties1;
properties2.DeleteRetentionPolicy = new DeleteRetentionPolicy();
diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/tests/Tests/FileServiceTests.cs b/sdk/storage/Microsoft.Azure.Management.Storage/tests/Tests/FileServiceTests.cs
index 3916bb9376e7..080323a628f4 100644
--- a/sdk/storage/Microsoft.Azure.Management.Storage/tests/Tests/FileServiceTests.cs
+++ b/sdk/storage/Microsoft.Azure.Management.Storage/tests/Tests/FileServiceTests.cs
@@ -114,9 +114,14 @@ public void FileSharesUpdateGetTest()
// Create storage account
string accountName = TestUtilities.GenerateName("sto");
- var parameters = StorageManagementTestUtilities.GetDefaultStorageAccountParameters();
+ var parameters = new StorageAccountCreateParameters
+ {
+ Location = "westeurope",
+ Kind = Kind.StorageV2,
+ Sku = new Sku { Name = SkuName.StandardLRS },
+ LargeFileSharesState = LargeFileSharesState.Enabled
+ };
var account = storageMgmtClient.StorageAccounts.Create(rgName, accountName, parameters);
- StorageManagementTestUtilities.VerifyAccountProperties(account, true);
// implement case
try
@@ -128,7 +133,7 @@ public void FileSharesUpdateGetTest()
Dictionary metaData = new Dictionary();
metaData.Add("metadata1", "true");
metaData.Add("metadata2", "value2");
- int shareQuota = 501;
+ int shareQuota = 5200;
var shareSet = storageMgmtClient.FileShares.Update(rgName, accountName, shareName, metaData, shareQuota);
Assert.NotNull(shareSet.Metadata);
Assert.Equal(shareQuota, shareSet.ShareQuota);