diff --git a/storage/client/file/README.md b/storage/client/file/README.md
index db523e4d3e440..3e7d8e180b7fa 100644
--- a/storage/client/file/README.md
+++ b/storage/client/file/README.md
@@ -142,8 +142,8 @@ The File Service REST API provides operations on accounts and manage file servic
Once you have the SASToken, you can construct the file service client with `${accountName}`, `${sasToken}`
```
-String fileServiceURL = String.format("https://%s.file.core.windows.net", accountName);
-FileServiceClient fileServiceClient = new FileServiceClientBuilder().endpoint(fileServiceURL)
+String fileStorageURL = String.format("https://%s.file.core.windows.net", accountName);
+FileStorageClient fileStorageClient = new FileStorageClientBuilder().endpoint(fileStorageURL)
.credential(sasToken).buildClient();
```
@@ -209,19 +209,19 @@ The following sections provide several code snippets covering some of the most c
### Create a share
Create a share in the Storage Account. Throws StorageErrorException If the share fails to be created.
-Taking a FileServiceClient in KeyConcept, [`${fileServiceClient}`](#File-services) .
+Taking a FileStorageClient in KeyConcept, [`${fileStorageClient}`](#File-services) .
```Java
String shareName = "testshare";
-fileServiceClient.createShare(shareName);
+fileStorageClient.createShare(shareName);
```
### Create a snapshot on Share
-Taking a FileServiceClient in KeyConcept, [`${fileServiceClient}`](#File-services) .
+Taking a FileStorageClient in KeyConcept, [`${fileStorageClient}`](#File-services) .
```Java
String shareName = "testshare";
-ShareClient shareClient = fileServiceClient.getShareClient(shareName);
+ShareClient shareClient = fileStorageClient.getShareClient(shareName);
shareClient.createSnapshot();
```
@@ -250,10 +250,10 @@ directoryClient.createFile(fileName);
```
### List all Shares
-Taking the fileServiceClient in KeyConcept, [`${fileServiceClient}`](#File-services)
+Taking the fileStorageClient in KeyConcept, [`${fileStorageClient}`](#File-services)
```Java
-fileServiceClient.listShares();
+fileStorageClient.listShares();
```
### Create all subdirectories and files
@@ -347,22 +347,22 @@ fileClient.downloadToFile(filePath);
```
### Get a file service properties
-Taking a FileServiceClient in KeyConcept, [`${fileServiceClient}`](#File-services) .
+Taking a FileStorageClient in KeyConcept, [`${fileStorageClient}`](#File-services) .
```Java
-fileServiceClient.getProperties();
+fileStorageClient.getProperties();
```
### Set a file service properties
-Taking a FileServiceClient in KeyConcept, [`${fileServiceClient}`](#File-services) .
+Taking a FileStorageClient in KeyConcept, [`${fileStorageClient}`](#File-services) .
```Java
-FileServiceProperties properties = fileServiceClient.getProperties().value();
+FileServiceProperties properties = fileStorageClient.getProperties().value();
properties.minuteMetrics().enabled(true);
properties.hourMetrics().enabled(true);
-VoidResponse response = fileServiceClient.setProperties(properties);
+VoidResponse response = fileStorageClient.setProperties(properties);
```
### Set a share metadata
@@ -432,7 +432,7 @@ When you interact with file using this Java client library, errors returned by t
## Next steps
### More Samples
-- [FileServiceSample](src/samples/java/file/FileServiceSample.java)
+- [FileStorageSample](src/samples/java/file/FileStorageSample.java)
- [ShareSample](src/samples/java/file/ShareSample.java)
- [DirectorySample](src/samples/java/file/DirectorySample.java)
- [FileSample](src/samples/java/file/FileSample.java)
diff --git a/storage/client/file/src/main/java/com/azure/storage/file/FileServiceAsyncClient.java b/storage/client/file/src/main/java/com/azure/storage/file/FileStorageAsyncClient.java
similarity index 92%
rename from storage/client/file/src/main/java/com/azure/storage/file/FileServiceAsyncClient.java
rename to storage/client/file/src/main/java/com/azure/storage/file/FileStorageAsyncClient.java
index 3c13197f7d477..0d35b0fda46f4 100644
--- a/storage/client/file/src/main/java/com/azure/storage/file/FileServiceAsyncClient.java
+++ b/storage/client/file/src/main/java/com/azure/storage/file/FileStorageAsyncClient.java
@@ -38,26 +38,26 @@
*
*
Instantiating an Asynchronous File Service Client
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.instantiation}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.instantiation}
*
- * View {@link FileServiceClientBuilder this} for additional ways to construct the azureFileStorageClient.
+ * View {@link FileStorageClientBuilder this} for additional ways to construct the azureFileStorageClient.
*
- * @see FileServiceClientBuilder
- * @see FileServiceClient
+ * @see FileStorageClientBuilder
+ * @see FileStorageClient
* @see SharedKeyCredential
* @see SASTokenCredential
*/
-public final class FileServiceAsyncClient {
+public final class FileStorageAsyncClient {
private final AzureFileStorageImpl azureFileStorageClient;
/**
- * Creates a FileServiceClient that sends requests to the storage account at {@code endpoint}.
+ * Creates a FileStorageClient that sends requests to the storage account at {@code endpoint}.
* Each service call goes through the {@code httpPipeline}.
*
* @param endpoint URL for the Storage File service
* @param httpPipeline HttpPipeline that the HTTP requests and responses flow through
*/
- FileServiceAsyncClient(URL endpoint, HttpPipeline httpPipeline) {
+ FileStorageAsyncClient(URL endpoint, HttpPipeline httpPipeline) {
this.azureFileStorageClient = new AzureFileStorageBuilder().pipeline(httpPipeline)
.url(endpoint.toString())
.build();
@@ -68,7 +68,7 @@ public final class FileServiceAsyncClient {
* @return the url of the Storage File service.
* @throws RuntimeException If the file service is using a malformed URL.
*/
- public URL getFileServiceUrl() {
+ public URL getFileStorageUrl() {
try {
return new URL(azureFileStorageClient.url());
} catch (MalformedURLException e) {
@@ -97,7 +97,7 @@ public ShareAsyncClient getShareAsyncClient(String shareName) {
*
* List all shares in the account
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.listShares}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.listShares}
*
* @return {@link ShareItem Shares} in the storage account without their metadata or snapshots
*/
@@ -121,11 +121,11 @@ public Flux listShares() {
*
* List all shares that begin with "azure"
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.listShares#ListSharesOptions.prefix}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.listShares#ListSharesOptions.prefix}
*
* List all shares including their snapshots and metadata
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.listShares#ListSharesOptions.metadata.snapshot}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.listShares#ListSharesOptions.metadata.snapshot}
*
* @param options Options for listing shares
* @return {@link ShareItem Shares} in the storage account that satisfy the filter requirements
@@ -194,7 +194,7 @@ private Publisher extractAndFetchShares(ServicesListSharesSegmentResp
*
* Retrieve File service properties
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.getProperties}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.getProperties}
*
* @return Storage account File service properties
*/
@@ -214,11 +214,11 @@ public Mono> getProperties() {
*
* Clear CORS in the File service
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.setProperties#fileServiceProperties.clearCORS}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.setProperties#fileServiceProperties.clearCORS}
*
* Enable Minute and Hour Metrics
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.setProperties#fileServiceProperties}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.setProperties#fileServiceProperties}
*
* @param properties Storage account File service properties
* @return A response that only contains headers and response status code
@@ -246,7 +246,7 @@ public Mono setProperties(FileServiceProperties properties) {
*
* Create the share "test"
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.createShare#string}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.createShare#string}
*
* @param shareName Name of the share
* @return A response containing the ShareAsyncClient and the status of creating the share.
@@ -264,11 +264,11 @@ public Mono> createShare(String shareName) {
*
* Create the share "test" with metadata "share:metadata"
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.createShare#string-map-integer.metadata}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.createShare#string-map-integer.metadata}
*
* Create the share "test" with a quota of 10 GB
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.createShare#string-map-integer.quota}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.createShare#string-map-integer.quota}
*
* @param shareName Name of the share
* @param metadata Optional metadata to associate with the share
@@ -292,7 +292,7 @@ public Mono> createShare(String shareName, MapDelete the share "test"
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.deleteShare#string}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.deleteShare#string}
*
* @param shareName Name of the share
* @return A response that only contains headers and response status code
@@ -310,7 +310,7 @@ public Mono deleteShare(String shareName) {
*
* Delete the snapshot of share "test" that was created at current time.
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.deleteShare#string-string}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.deleteShare#string-string}
*
* @param shareName Name of the share
* @param snapshot Identifier of the snapshot
diff --git a/storage/client/file/src/main/java/com/azure/storage/file/FileServiceClient.java b/storage/client/file/src/main/java/com/azure/storage/file/FileStorageClient.java
similarity index 80%
rename from storage/client/file/src/main/java/com/azure/storage/file/FileServiceClient.java
rename to storage/client/file/src/main/java/com/azure/storage/file/FileStorageClient.java
index 2dd4656926e15..2213283b289c5 100644
--- a/storage/client/file/src/main/java/com/azure/storage/file/FileServiceClient.java
+++ b/storage/client/file/src/main/java/com/azure/storage/file/FileStorageClient.java
@@ -17,31 +17,31 @@
import java.util.Map;
/**
- * This class provides a fileServiceAsyncClient that contains all the operations for interacting with a file account in Azure Storage.
- * Operations allowed by the fileServiceAsyncClient are creating, listing, and deleting shares and retrieving and updating properties
+ * This class provides operations for interacting with a file account in Azure Storage.
+ * Operations allowed by the FileStorageClient are creating, listing, and deleting shares and retrieving and updating properties
* of the account.
*
* Instantiating a Synchronous File Service Client
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.instantiation}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.instantiation}
*
- * View {@link FileServiceClientBuilder this} for additional ways to construct the fileServiceAsyncClient.
+ * View {@link FileStorageClientBuilder this} for additional ways to construct the FileStorageClient.
*
- * @see FileServiceClientBuilder
- * @see FileServiceAsyncClient
+ * @see FileStorageClientBuilder
+ * @see FileStorageAsyncClient
* @see SharedKeyCredential
* @see SASTokenCredential
*/
-public final class FileServiceClient {
- private final FileServiceAsyncClient fileServiceAsyncClient;
+public final class FileStorageClient {
+ private final FileStorageAsyncClient fileStorageAsyncClient;
/**
- * Creates a FileServiceClient that wraps a FileServiceAsyncClient and blocks requests.
+ * Creates a FileStorageClient that wraps a FileStorageAsyncClient and blocks requests.
*
- * @param client FileServiceAsyncClient that is used to send requests
+ * @param client FileStorageAsyncClient that is used to send requests
*/
- FileServiceClient(FileServiceAsyncClient client) {
- this.fileServiceAsyncClient = client;
+ FileStorageClient(FileStorageAsyncClient client) {
+ this.fileStorageAsyncClient = client;
}
/**
@@ -49,21 +49,21 @@ public final class FileServiceClient {
* @return the url of the Storage File service.
* @throws RuntimeException If the directory is using a malformed URL.
*/
- public URL getFileServiceUrl() {
- return fileServiceAsyncClient.getFileServiceUrl();
+ public URL getFileStorageUrl() {
+ return fileStorageAsyncClient.getFileStorageUrl();
}
/**
* Constructs a ShareClient that interacts with the specified share.
*
- * If the share doesn't exist in the storage account {@link ShareClient#create() create} in the fileServiceAsyncClient will
+ *
If the share doesn't exist in the storage account {@link ShareClient#create() create} in the ShareClient will
* need to be called before interaction with the share can happen.
*
* @param shareName Name of the share
* @return a ShareClient that interacts with the specified share
*/
public ShareClient getShareClient(String shareName) {
- return new ShareClient(fileServiceAsyncClient.getShareAsyncClient(shareName));
+ return new ShareClient(fileStorageAsyncClient.getShareAsyncClient(shareName));
}
/**
@@ -73,7 +73,7 @@ public ShareClient getShareClient(String shareName) {
*
* List all shares in the account
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.listShares}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.listShares}
*
* @return {@link ShareItem Shares} in the storage account without their metadata or snapshots
*/
@@ -97,17 +97,17 @@ public Iterable listShares() {
*
* List all shares that begin with "azure"
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.listShares#ListSharesOptions.prefix}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.listShares#ListSharesOptions.prefix}
*
* List all shares including their snapshots and metadata
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.listShares#ListSharesOptions.metadata.snapshot}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.listShares#ListSharesOptions.metadata.snapshot}
*
* @param options Options for listing shares
* @return {@link ShareItem Shares} in the storage account that satisfy the filter requirements
*/
public Iterable listShares(ListSharesOptions options) {
- return fileServiceAsyncClient.listShares(options).toIterable();
+ return fileStorageAsyncClient.listShares(options).toIterable();
}
/**
@@ -118,12 +118,12 @@ public Iterable listShares(ListSharesOptions options) {
*
* Retrieve File service properties
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.getProperties}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.getProperties}
*
* @return Storage account File service properties
*/
public Response getProperties() {
- return fileServiceAsyncClient.getProperties().block();
+ return fileStorageAsyncClient.getProperties().block();
}
/**
@@ -137,11 +137,11 @@ public Response getProperties() {
*
* Clear CORS in the File service
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.setProperties#fileServiceProperties.clearCORS}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.setProperties#fileServiceProperties.clearCORS}
*
* Enable Minute and Hour Metrics
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.setProperties#fileServiceProperties}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.setProperties#fileServiceProperties}
*
* @param properties Storage account File service properties
* @return A response that only contains headers and response status code
@@ -158,7 +158,7 @@ public Response getProperties() {
*
*/
public VoidResponse setProperties(FileServiceProperties properties) {
- return fileServiceAsyncClient.setProperties(properties).block();
+ return fileStorageAsyncClient.setProperties(properties).block();
}
/**
@@ -167,7 +167,7 @@ public VoidResponse setProperties(FileServiceProperties properties) {
* Code Samples
*
* Create the share with share name of "myshare"
- * {@codesnippet com.azure.storage.file.fileServiceClient.createShare#string}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.createShare#string}
*
* @param shareName Name of the share
* @return A response containing the ShareClient and the status of creating the share.
@@ -185,11 +185,11 @@ public Response createShare(String shareName) {
*
* Create the share "test" with metadata "share:metadata"
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.createShare#string-map-integer.metadata}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.createShare#string-map-integer.metadata}
*
* Create the share "test" with a quota of 10 GB
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.createShare#string-map-integer.quota}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.createShare#string-map-integer.quota}
*
* @param shareName Name of the share
* @param metadata Optional metadata to associate with the share
@@ -211,7 +211,7 @@ public Response createShare(String shareName, Map m
*
* Delete the share "test"
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.deleteShare#string}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.deleteShare#string}
*
* @param shareName Name of the share
* @return A response that only contains headers and response status code
@@ -229,7 +229,7 @@ public VoidResponse deleteShare(String shareName) {
*
* Delete the snapshot of share "test" that was created at current time.
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.deleteShare#string-string}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.deleteShare#string-string}
*
* @param shareName Name of the share
* @param snapshot Identifier of the snapshot
@@ -237,6 +237,6 @@ public VoidResponse deleteShare(String shareName) {
* @throws StorageErrorException If the share doesn't exist or the snapshot doesn't exist
*/
public VoidResponse deleteShare(String shareName, String snapshot) {
- return fileServiceAsyncClient.deleteShare(shareName, snapshot).block();
+ return fileStorageAsyncClient.deleteShare(shareName, snapshot).block();
}
}
diff --git a/storage/client/file/src/main/java/com/azure/storage/file/FileServiceClientBuilder.java b/storage/client/file/src/main/java/com/azure/storage/file/FileStorageClientBuilder.java
similarity index 74%
rename from storage/client/file/src/main/java/com/azure/storage/file/FileServiceClientBuilder.java
rename to storage/client/file/src/main/java/com/azure/storage/file/FileStorageClientBuilder.java
index 5a6393ffffdec..b139f0974eaac 100644
--- a/storage/client/file/src/main/java/com/azure/storage/file/FileServiceClientBuilder.java
+++ b/storage/client/file/src/main/java/com/azure/storage/file/FileStorageClientBuilder.java
@@ -29,45 +29,45 @@
import java.util.Objects;
/**
- * This class provides a fluent builder API to help aid the configuration and instantiation of the {@link FileServiceClient FileServiceClients}
- * and {@link FileServiceAsyncClient FileServiceAsyncClients}, calling {@link FileServiceClientBuilder#buildClient() buildClient}
- * constructs an instance of FileServiceClient and calling {@link FileServiceClientBuilder#buildAsyncClient() buildAsyncClient}
- * constructs an instance of FileServiceAsyncClient.
+ * This class provides a fluent builder API to help aid the configuration and instantiation of the {@link FileStorageClient FileStorageClients}
+ * and {@link FileStorageAsyncClient FileStorageAsyncClients}, calling {@link FileStorageClientBuilder#buildClient() buildClient}
+ * constructs an instance of FileStorageClient and calling {@link FileStorageClientBuilder#buildAsyncClient() buildAsyncClient}
+ * constructs an instance of FileStorageAsyncClient.
*
* The client needs the endpoint of the Azure Storage File service and authorization credential.
- * {@link FileServiceClientBuilder#endpoint(String) endpoint} gives the builder the endpoint and may give the builder a
+ * {@link FileStorageClientBuilder#endpoint(String) endpoint} gives the builder the endpoint and may give the builder a
* {@link SASTokenCredential} that authorizes the client.
*
- * Instantiating a synchronous FileService Client with SAS token
- * {@codesnippet com.azure.storage.file.fileServiceClient.instantiation.sastoken}
+ * Instantiating a synchronous FileStorage Client with SAS token
+ * {@codesnippet com.azure.storage.file.fileStorageClient.instantiation.sastoken}
*
- * Instantiating an Asynchronous FileService Client with SAS token
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.instantiation.sastoken}
+ * Instantiating an Asynchronous FileStorage Client with SAS token
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.instantiation.sastoken}
*
* If the {@code endpoint} doesn't contain the query parameters to construct a {@code SASTokenCredential} they may
- * be set using {@link FileServiceClientBuilder#credential(SASTokenCredential) credential}.
+ * be set using {@link FileStorageClientBuilder#credential(SASTokenCredential) credential}.
*
- * {@codesnippet com.azure.storage.file.fileServiceClient.instantiation.credential}
+ * {@codesnippet com.azure.storage.file.fileStorageClient.instantiation.credential}
*
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.instantiation.credential}
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.instantiation.credential}
*
* Another way to authenticate the client is using a {@link SharedKeyCredential}. To create a SharedKeyCredential
* a connection string from the Storage File service must be used. Set the SharedKeyCredential with
- * {@link FileServiceClientBuilder#connectionString(String) connectionString}. If the builder has both a SASTokenCredential and
+ * {@link FileStorageClientBuilder#connectionString(String) connectionString}. If the builder has both a SASTokenCredential and
* SharedKeyCredential the SharedKeyCredential will be preferred when authorizing requests sent to the service.
*
- * Instantiating a synchronous FileService Client with connection string.
- * {@codesnippet com.azure.storage.file.fileServiceClient.instantiation.connectionstring}
+ * Instantiating a synchronous FileStorage Client with connection string.
+ * {@codesnippet com.azure.storage.file.fileStorageClient.instantiation.connectionstring}
*
- * Instantiating an Asynchronous FileService Client with connection string.
- * {@codesnippet com.azure.storage.file.fileServiceAsyncClient.instantiation.connectionstring}
+ * Instantiating an Asynchronous FileStorage Client with connection string.
+ * {@codesnippet com.azure.storage.file.fileStorageAsyncClient.instantiation.connectionstring}
*
- * @see FileServiceClient
- * @see FileServiceAsyncClient
+ * @see FileStorageClient
+ * @see FileStorageAsyncClient
* @see SASTokenCredential
* @see SharedKeyCredential
*/
-public final class FileServiceClientBuilder {
+public final class FileStorageClientBuilder {
private static final String ACCOUNT_NAME = "accountname";
private final List policies;
@@ -81,10 +81,10 @@ public final class FileServiceClientBuilder {
private Configuration configuration;
/**
- * Creates a builder instance that is able to configure and construct {@link FileServiceClient FileServiceClients}
- * and {@link FileServiceAsyncClient FileServiceAsyncClients}.
+ * Creates a builder instance that is able to configure and construct {@link FileStorageClient FileStorageClients}
+ * and {@link FileStorageAsyncClient FileStorageAsyncClients}.
*/
- public FileServiceClientBuilder() {
+ public FileStorageClientBuilder() {
retryPolicy = new RetryPolicy();
logLevel = HttpLogDetailLevel.NONE;
policies = new ArrayList<>();
@@ -92,21 +92,21 @@ public FileServiceClientBuilder() {
}
/**
- * Creates a {@link FileServiceAsyncClient} based on options set in the builder. Every time {@code buildAsyncClient()} is
- * called a new instance of {@link FileServiceAsyncClient} is created.
+ * Creates a {@link FileStorageAsyncClient} based on options set in the builder. Every time {@code buildAsyncClient()} is
+ * called a new instance of {@link FileStorageAsyncClient} is created.
*
*
- * If {@link FileServiceClientBuilder#pipeline(HttpPipeline) pipeline} is set, then the {@code pipeline} and
- * {@link FileServiceClientBuilder#endpoint(String) endpoint} are used to create the
- * {@link FileServiceAsyncClient client}. All other builder settings are ignored.
+ * If {@link FileStorageClientBuilder#pipeline(HttpPipeline) pipeline} is set, then the {@code pipeline} and
+ * {@link FileStorageClientBuilder#endpoint(String) endpoint} are used to create the
+ * {@link FileStorageAsyncClient client}. All other builder settings are ignored.
*
*
- * @return A FileServiceAsyncClient with the options set from the builder.
+ * @return A FileStorageAsyncClient with the options set from the builder.
* @throws IllegalArgumentException If neither a {@link SharedKeyCredential} or {@link SASTokenCredential} has been set.
*/
- public FileServiceAsyncClient buildAsyncClient() {
+ public FileStorageAsyncClient buildAsyncClient() {
if (pipeline != null) {
- return new FileServiceAsyncClient(endpoint, pipeline);
+ return new FileStorageAsyncClient(endpoint, pipeline);
}
if (sasTokenCredential == null && sharedKeyCredential == null) {
@@ -139,25 +139,25 @@ public FileServiceAsyncClient buildAsyncClient() {
.httpClient(httpClient)
.build();
- return new FileServiceAsyncClient(endpoint, pipeline);
+ return new FileStorageAsyncClient(endpoint, pipeline);
}
/**
- * Creates a {@link FileServiceClient} based on options set in the builder. Every time {@code buildClient()} is
- * called a new instance of {@link FileServiceClient} is created.
+ * Creates a {@link FileStorageClient} based on options set in the builder. Every time {@code buildClient()} is
+ * called a new instance of {@link FileStorageClient} is created.
*
*
- * If {@link FileServiceClientBuilder#pipeline(HttpPipeline) pipeline} is set, then the {@code pipeline} and
- * {@link FileServiceClientBuilder#endpoint(String) endpoint} are used to create the
- * {@link FileServiceClient client}. All other builder settings are ignored.
+ * If {@link FileStorageClientBuilder#pipeline(HttpPipeline) pipeline} is set, then the {@code pipeline} and
+ * {@link FileStorageClientBuilder#endpoint(String) endpoint} are used to create the
+ * {@link FileStorageClient client}. All other builder settings are ignored.
*
*
- * @return A FileServiceClient with the options set from the builder.
+ * @return A FileStorageClient with the options set from the builder.
* @throws NullPointerException If {@code endpoint} is {@code null}.
* @throws IllegalStateException If neither a {@link SharedKeyCredential} or {@link SASTokenCredential} has been set.
*/
- public FileServiceClient buildClient() {
- return new FileServiceClient(buildAsyncClient());
+ public FileStorageClient buildClient() {
+ return new FileStorageClient(buildAsyncClient());
}
/**
@@ -167,10 +167,10 @@ public FileServiceClient buildClient() {
* attempt to generate a {@link SASTokenCredential} to authenticate requests sent to the service.
*
* @param endpoint The URL of the Azure Storage File instance to send service requests to and receive responses from.
- * @return the updated FileServiceClientBuilder object
+ * @return the updated FileStorageClientBuilder object
* @throws IllegalArgumentException If {@code endpoint} isn't a proper URL
*/
- public FileServiceClientBuilder endpoint(String endpoint) {
+ public FileStorageClientBuilder endpoint(String endpoint) {
try {
URL fullURL = new URL(endpoint);
this.endpoint = new URL(fullURL.getProtocol() + "://" + fullURL.getHost());
@@ -191,10 +191,10 @@ public FileServiceClientBuilder endpoint(String endpoint) {
* Sets the {@link SASTokenCredential} used to authenticate requests sent to the Queue service.
*
* @param credential SAS token credential generated from the Storage account that authorizes requests
- * @return the updated FileServiceClientBuilder object
+ * @return the updated FileStorageClientBuilder object
* @throws NullPointerException If {@code credential} is {@code null}.
*/
- public FileServiceClientBuilder credential(SASTokenCredential credential) {
+ public FileStorageClientBuilder credential(SASTokenCredential credential) {
this.sasTokenCredential = Objects.requireNonNull(credential);
this.sharedKeyCredential = null;
return this;
@@ -204,10 +204,10 @@ public FileServiceClientBuilder credential(SASTokenCredential credential) {
* Sets the {@link SharedKeyCredential} used to authenticate requests sent to the Queue service.
*
* @param credential Shared key credential generated from the Storage account that authorizes requests
- * @return the updated FileServiceClientBuilder object
+ * @return the updated FileStorageClientBuilder object
* @throws NullPointerException If {@code credential} is {@code null}.
*/
- public FileServiceClientBuilder credential(SharedKeyCredential credential) {
+ public FileStorageClientBuilder credential(SharedKeyCredential credential) {
this.sharedKeyCredential = Objects.requireNonNull(credential);
this.sasTokenCredential = null;
return this;
@@ -218,10 +218,10 @@ public FileServiceClientBuilder credential(SharedKeyCredential credential) {
* File service.
*
* @param connectionString Connection string from the Access Keys section in the Storage account
- * @return the updated FileServiceClientBuilder object
+ * @return the updated FileStorageClientBuilder object
* @throws NullPointerException If {@code connectionString} is {@code null}.
*/
- public FileServiceClientBuilder connectionString(String connectionString) {
+ public FileStorageClientBuilder connectionString(String connectionString) {
Objects.requireNonNull(connectionString);
this.sharedKeyCredential = SharedKeyCredential.fromConnectionString(connectionString);
getEndPointFromConnectionString(connectionString);
@@ -247,10 +247,10 @@ private void getEndPointFromConnectionString(String connectionString) {
* Sets the HTTP client to use for sending and receiving requests to and from the service.
*
* @param httpClient The HTTP client to use for requests.
- * @return The updated FileServiceClientBuilder object.
+ * @return The updated FileStorageClientBuilder object.
* @throws NullPointerException If {@code httpClient} is {@code null}.
*/
- public FileServiceClientBuilder httpClient(HttpClient httpClient) {
+ public FileStorageClientBuilder httpClient(HttpClient httpClient) {
this.httpClient = Objects.requireNonNull(httpClient);
return this;
}
@@ -259,10 +259,10 @@ public FileServiceClientBuilder httpClient(HttpClient httpClient) {
* Adds a policy to the set of existing policies that are executed after the {@link RetryPolicy}.
*
* @param pipelinePolicy The retry policy for service requests.
- * @return The updated FileServiceClientBuilder object.
+ * @return The updated FileStorageClientBuilder object.
* @throws NullPointerException If {@code pipelinePolicy} is {@code null}.
*/
- public FileServiceClientBuilder addPolicy(HttpPipelinePolicy pipelinePolicy) {
+ public FileStorageClientBuilder addPolicy(HttpPipelinePolicy pipelinePolicy) {
Objects.requireNonNull(pipelinePolicy);
this.policies.add(pipelinePolicy);
return this;
@@ -272,9 +272,9 @@ public FileServiceClientBuilder addPolicy(HttpPipelinePolicy pipelinePolicy) {
* Sets the logging level for HTTP requests and responses.
*
* @param logLevel The amount of logging output when sending and receiving HTTP requests/responses.
- * @return The updated FileServiceClientBuilder object.
+ * @return The updated FileStorageClientBuilder object.
*/
- public FileServiceClientBuilder httpLogDetailLevel(HttpLogDetailLevel logLevel) {
+ public FileStorageClientBuilder httpLogDetailLevel(HttpLogDetailLevel logLevel) {
this.logLevel = logLevel;
return this;
}
@@ -282,14 +282,14 @@ public FileServiceClientBuilder httpLogDetailLevel(HttpLogDetailLevel logLevel)
/**
* Sets the HTTP pipeline to use for the service client.
*
- * If {@code pipeline} is set, all other settings are ignored, aside from {@link FileServiceClientBuilder#endpoint(String) endpoint}
+ * If {@code pipeline} is set, all other settings are ignored, aside from {@link FileStorageClientBuilder#endpoint(String) endpoint}
* when building clients.
*
* @param pipeline The HTTP pipeline to use for sending service requests and receiving responses.
- * @return The updated FileServiceClientBuilder object.
+ * @return The updated FileStorageClientBuilder object.
* @throws NullPointerException If {@code pipeline} is {@code null}.
*/
- public FileServiceClientBuilder pipeline(HttpPipeline pipeline) {
+ public FileStorageClientBuilder pipeline(HttpPipeline pipeline) {
this.pipeline = Objects.requireNonNull(pipeline);
return this;
}
@@ -301,10 +301,10 @@ public FileServiceClientBuilder pipeline(HttpPipeline pipeline) {
* configuration store}, use {@link Configuration#NONE} to bypass using configuration settings during construction.
*
* @param configuration The configuration store used to
- * @return The updated FileServiceClientBuilder object.
+ * @return The updated FileStorageClientBuilder object.
* @throws NullPointerException If {@code configuration} is {@code null}.
*/
- public FileServiceClientBuilder configuration(Configuration configuration) {
+ public FileStorageClientBuilder configuration(Configuration configuration) {
this.configuration = Objects.requireNonNull(configuration);
return this;
}
diff --git a/storage/client/file/src/samples/java/com/azure/file/AsyncSample.java b/storage/client/file/src/samples/java/com/azure/file/AsyncSample.java
index 12a0ae4e36c88..46e76e63b6686 100644
--- a/storage/client/file/src/samples/java/com/azure/file/AsyncSample.java
+++ b/storage/client/file/src/samples/java/com/azure/file/AsyncSample.java
@@ -3,8 +3,8 @@
package com.azure.file;
import com.azure.core.util.configuration.ConfigurationManager;
-import com.azure.storage.file.FileServiceAsyncClient;
-import com.azure.storage.file.FileServiceClientBuilder;
+import com.azure.storage.file.FileStorageAsyncClient;
+import com.azure.storage.file.FileStorageClientBuilder;
import java.util.UUID;
/**
@@ -24,11 +24,11 @@ private static String generateRandomName() {
*/
public static void main(String[] args) {
// Create a file service client
- FileServiceAsyncClient fileServiceAsyncClient = new FileServiceClientBuilder().endpoint(ENDPOINT)
+ FileStorageAsyncClient fileStorageAsyncClient = new FileStorageClientBuilder().endpoint(ENDPOINT)
.buildAsyncClient();
// Create a share
String shareName = generateRandomName();
- fileServiceAsyncClient.createShare(shareName).subscribe(
+ fileStorageAsyncClient.createShare(shareName).subscribe(
response -> {
System.out.printf("Successfully created a share with status code: %d.", response.statusCode());
},
@@ -41,10 +41,10 @@ public static void main(String[] args) {
);
// List all shares and delete them.
- fileServiceAsyncClient.listShares().subscribe(
+ fileStorageAsyncClient.listShares().subscribe(
shareItem -> {
System.out.println("There is a share named: " + shareItem.name());
- fileServiceAsyncClient.deleteShare(shareItem.name()).subscribe(
+ fileStorageAsyncClient.deleteShare(shareItem.name()).subscribe(
response -> {
System.out.printf("Successfully delete the share: %s.", shareItem.name());
},
diff --git a/storage/client/file/src/samples/java/com/azure/file/FileServiceSample.java b/storage/client/file/src/samples/java/com/azure/file/FileStorageSample.java
similarity index 83%
rename from storage/client/file/src/samples/java/com/azure/file/FileServiceSample.java
rename to storage/client/file/src/samples/java/com/azure/file/FileStorageSample.java
index f5fad2f7035aa..97e45b6245e1c 100644
--- a/storage/client/file/src/samples/java/com/azure/file/FileServiceSample.java
+++ b/storage/client/file/src/samples/java/com/azure/file/FileStorageSample.java
@@ -4,8 +4,8 @@
import com.azure.core.http.rest.Response;
import com.azure.core.util.configuration.ConfigurationManager;
-import com.azure.storage.file.FileServiceClient;
-import com.azure.storage.file.FileServiceClientBuilder;
+import com.azure.storage.file.FileStorageClient;
+import com.azure.storage.file.FileStorageClientBuilder;
import com.azure.storage.file.models.FileServiceProperties;
import com.azure.storage.file.models.StorageErrorException;
import java.util.UUID;
@@ -13,7 +13,7 @@
/**
* Sample demonstrates how to create, list and delete shares, and get and set properties.
*/
-public class FileServiceSample {
+public class FileStorageSample {
private static final String CONNECTION_STRING = ConfigurationManager.getConfiguration().get("AZURE_STORAGE_CONNECTION_STRING");
// This is the helper method to generate random name.
@@ -27,13 +27,13 @@ private static String generateRandomName() {
*/
public static void main(String[] args) {
// Create a file service client.
- FileServiceClient fileServiceClient = new FileServiceClientBuilder()
+ FileStorageClient fileStorageClient = new FileStorageClientBuilder()
.connectionString(CONNECTION_STRING).buildClient();
// Create 3 shares
for (int i = 0; i < 3; i++) {
try {
- fileServiceClient.createShare(generateRandomName());
+ fileStorageClient.createShare(generateRandomName());
} catch (StorageErrorException e) {
System.out.printf("Failed to create share %d. Reasons: %s", i, e.getMessage());
}
@@ -41,7 +41,7 @@ public static void main(String[] args) {
// Get properties from the file service
try {
- Response response = fileServiceClient.getProperties();
+ Response response = fileStorageClient.getProperties();
System.out.printf("Hour metrics enabled: %b, Minute metrics enabled: %b\n",
response.value().hourMetrics(), response.value().minuteMetrics());
@@ -49,11 +49,11 @@ public static void main(String[] args) {
System.out.println("Failed to get the account properties. Reasons: " + e.getMessage());
}
// List all shares under file service and delete them.
- fileServiceClient.listShares().forEach(
+ fileStorageClient.listShares().forEach(
shareItem -> {
try {
System.out.printf("This is the share name: %s in the file account.\n", shareItem.name());
- fileServiceClient.deleteShare(shareItem.name());
+ fileStorageClient.deleteShare(shareItem.name());
System.out.println("The share has been deleted from the storage file account!");
} catch (StorageErrorException e) {
System.out.println("Failed to delete the share. Reasons: " + e.getMessage());
diff --git a/storage/client/file/src/samples/java/com/azure/storage/file/FileServiceJavaDocCodeSamples.java b/storage/client/file/src/samples/java/com/azure/storage/file/FileStorageJavaDocCodeSamples.java
similarity index 52%
rename from storage/client/file/src/samples/java/com/azure/storage/file/FileServiceJavaDocCodeSamples.java
rename to storage/client/file/src/samples/java/com/azure/storage/file/FileStorageJavaDocCodeSamples.java
index 95e6971804713..7c142a37c89b6 100644
--- a/storage/client/file/src/samples/java/com/azure/storage/file/FileServiceJavaDocCodeSamples.java
+++ b/storage/client/file/src/samples/java/com/azure/storage/file/FileStorageJavaDocCodeSamples.java
@@ -15,409 +15,409 @@
import java.util.Map;
/**
- * Contains code snippets when generating javadocs through doclets for {@link FileServiceClient} and {@link FileServiceAsyncClient}.
+ * Contains code snippets when generating javadocs through doclets for {@link FileStorageClient} and {@link FileStorageAsyncClient}.
*/
-public class FileServiceJavaDocCodeSamples {
+public class FileStorageJavaDocCodeSamples {
/**
- * Generates code sample for {@link FileServiceClient} instantiation.
+ * Generates code sample for {@link FileStorageClient} instantiation.
*/
public void initialization() {
- // BEGIN: com.azure.storage.file.fileServiceClient.instantiation
- FileServiceClient client = new FileServiceClientBuilder()
+ // BEGIN: com.azure.storage.file.fileStorageClient.instantiation
+ FileStorageClient client = new FileStorageClientBuilder()
.connectionString("${connectionString}")
.endpoint("${endpoint}")
.buildClient();
- // END: com.azure.storage.file.fileServiceClient.instantiation
+ // END: com.azure.storage.file.fileStorageClient.instantiation
}
/**
- * Generates code sample for {@link FileServiceAsyncClient} instantiation.
+ * Generates code sample for {@link FileStorageAsyncClient} instantiation.
*/
public void asyncInitialization() {
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.instantiation
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.instantiation
ShareAsyncClient client = new ShareClientBuilder()
.connectionString("${connectionString}")
.endpoint("${endpoint}")
.buildAsyncClient();
- // END: com.azure.storage.file.fileServiceAsyncClient.instantiation
+ // END: com.azure.storage.file.fileStorageAsyncClient.instantiation
}
/**
- * Generates code sample for creating a {@link FileServiceClient} with {@link SASTokenCredential}
- * @return An instance of {@link FileServiceClient}
+ * Generates code sample for creating a {@link FileStorageClient} with {@link SASTokenCredential}
+ * @return An instance of {@link FileStorageClient}
*/
- public FileServiceClient createClientWithSASToken() {
- // BEGIN: com.azure.storage.file.fileServiceClient.instantiation.sastoken
- FileServiceClient fileServiceClient = new FileServiceClientBuilder()
+ public FileStorageClient createClientWithSASToken() {
+ // BEGIN: com.azure.storage.file.fileStorageClient.instantiation.sastoken
+ FileStorageClient fileStorageClient = new FileStorageClientBuilder()
.endpoint("https://${accountName}.file.core.windows.net?${SASToken}")
.buildClient();
- // END: com.azure.storage.file.fileServiceClient.instantiation.sastoken
- return fileServiceClient;
+ // END: com.azure.storage.file.fileStorageClient.instantiation.sastoken
+ return fileStorageClient;
}
/**
- * Generates code sample for creating a {@link FileServiceAsyncClient} with {@link SASTokenCredential}
- * @return An instance of {@link FileServiceAsyncClient}
+ * Generates code sample for creating a {@link FileStorageAsyncClient} with {@link SASTokenCredential}
+ * @return An instance of {@link FileStorageAsyncClient}
*/
- public FileServiceAsyncClient createAsyncClientWithSASToken() {
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.instantiation.sastoken
- FileServiceAsyncClient fileServiceAsyncClient = new FileServiceClientBuilder()
+ public FileStorageAsyncClient createAsyncClientWithSASToken() {
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.instantiation.sastoken
+ FileStorageAsyncClient fileStorageAsyncClient = new FileStorageClientBuilder()
.endpoint("https://{accountName}.file.core.windows.net?{SASToken}")
.buildAsyncClient();
- // END: com.azure.storage.file.fileServiceAsyncClient.instantiation.sastoken
- return fileServiceAsyncClient;
+ // END: com.azure.storage.file.fileStorageAsyncClient.instantiation.sastoken
+ return fileStorageAsyncClient;
}
/**
- * Generates code sample for creating a {@link FileServiceClient} with {@link SASTokenCredential}
+ * Generates code sample for creating a {@link FileStorageClient} with {@link SASTokenCredential}
* {@code SASTokenQueryParams} is composed of the Key
- * @return An instance of {@link FileServiceClient}
+ * @return An instance of {@link FileStorageClient}
*/
- public FileServiceClient createClientWithCredential() {
- // BEGIN: com.azure.storage.file.fileServiceClient.instantiation.credential
- FileServiceClient fileServiceClient = new FileServiceClientBuilder()
+ public FileStorageClient createClientWithCredential() {
+ // BEGIN: com.azure.storage.file.fileStorageClient.instantiation.credential
+ FileStorageClient fileStorageClient = new FileStorageClientBuilder()
.endpoint("https://{accountName}.file.core.windows.net")
.credential(SASTokenCredential.fromQuery("${SASTokenQueryParams}"))
.buildClient();
- // END: com.azure.storage.file.fileServiceClient.instantiation.credential
- return fileServiceClient;
+ // END: com.azure.storage.file.fileStorageClient.instantiation.credential
+ return fileStorageClient;
}
/**
- * Generates code sample for creating a {@link FileServiceAsyncClient} with {@link SASTokenCredential}
- * @return An instance of {@link FileServiceAsyncClient}
+ * Generates code sample for creating a {@link FileStorageAsyncClient} with {@link SASTokenCredential}
+ * @return An instance of {@link FileStorageAsyncClient}
*/
- public FileServiceAsyncClient createAsyncClientWithCredential() {
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.instantiation.credential
- FileServiceAsyncClient fileServiceAsyncClient = new FileServiceClientBuilder()
+ public FileStorageAsyncClient createAsyncClientWithCredential() {
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.instantiation.credential
+ FileStorageAsyncClient fileStorageAsyncClient = new FileStorageClientBuilder()
.endpoint("https://{accountName}.file.core.windows.net")
.credential(SASTokenCredential.fromQuery("${SASTokenQueryParams}"))
.buildAsyncClient();
- // END: com.azure.storage.file.fileServiceAsyncClient.instantiation.credential
- return fileServiceAsyncClient;
+ // END: com.azure.storage.file.fileStorageAsyncClient.instantiation.credential
+ return fileStorageAsyncClient;
}
/**
- * Generates code sample for creating a {@link FileServiceClient} with {@code connectionString} which turns into {@link SharedKeyCredential}
- * @return An instance of {@link FileServiceClient}
+ * Generates code sample for creating a {@link FileStorageClient} with {@code connectionString} which turns into {@link SharedKeyCredential}
+ * @return An instance of {@link FileStorageClient}
*/
- public FileServiceClient createClientWithConnectionString() {
- // BEGIN: com.azure.storage.file.fileServiceClient.instantiation.connectionstring
+ public FileStorageClient createClientWithConnectionString() {
+ // BEGIN: com.azure.storage.file.fileStorageClient.instantiation.connectionstring
String connectionString = "DefaultEndpointsProtocol=https;AccountName={name};AccountKey={key};"
+ "EndpointSuffix={core.windows.net}";
- FileServiceClient fileServiceClient = new FileServiceClientBuilder()
+ FileStorageClient fileStorageClient = new FileStorageClientBuilder()
.connectionString(connectionString)
.buildClient();
- // END: com.azure.storage.file.fileServiceClient.instantiation.connectionstring
- return fileServiceClient;
+ // END: com.azure.storage.file.fileStorageClient.instantiation.connectionstring
+ return fileStorageClient;
}
/**
- * Generates code sample for creating a {@link FileServiceAsyncClient} with {@code connectionString} which turns into {@link SharedKeyCredential}
- * @return An instance of {@link FileServiceAsyncClient}
+ * Generates code sample for creating a {@link FileStorageAsyncClient} with {@code connectionString} which turns into {@link SharedKeyCredential}
+ * @return An instance of {@link FileStorageAsyncClient}
*/
- public FileServiceAsyncClient createAsyncClientWithConnectionString() {
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.instantiation.connectionstring
+ public FileStorageAsyncClient createAsyncClientWithConnectionString() {
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.instantiation.connectionstring
String connectionString = "DefaultEndpointsProtocol=https;AccountName={name};AccountKey={key};"
+ "EndpointSuffix={core.windows.net}";
- FileServiceAsyncClient fileServiceAsyncClient = new FileServiceClientBuilder()
+ FileStorageAsyncClient fileStorageAsyncClient = new FileStorageClientBuilder()
.connectionString(connectionString)
.buildAsyncClient();
- // END: com.azure.storage.file.fileServiceAsyncClient.instantiation.connectionstring
- return fileServiceAsyncClient;
+ // END: com.azure.storage.file.fileStorageAsyncClient.instantiation.connectionstring
+ return fileStorageAsyncClient;
}
/**
- * Generates a code sample for using {@link FileServiceClient#createShare(String)}
+ * Generates a code sample for using {@link FileStorageClient#createShare(String)}
*/
public void createShare() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.createShare#string
- Response response = fileServiceClient.createShare("myshare");
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.createShare#string
+ Response response = fileStorageClient.createShare("myshare");
System.out.printf("Creating the share completed with status code %d", response.statusCode());
- // END: com.azure.storage.file.fileServiceClient.createShare#string
+ // END: com.azure.storage.file.fileStorageClient.createShare#string
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#createShare(String)}
+ * Generates a code sample for using {@link FileStorageAsyncClient#createShare(String)}
*/
public void createShareAsync() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.createShare#string
- fileServiceAsyncClient.createShare("myshare").subscribe(
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.createShare#string
+ fileStorageAsyncClient.createShare("myshare").subscribe(
response -> { },
error -> System.err.print(error.toString()),
() -> System.out.println("Complete creating the share!")
);
- // END: com.azure.storage.file.fileServiceAsyncClient.createShare#string
+ // END: com.azure.storage.file.fileStorageAsyncClient.createShare#string
}
/**
- * Generates a code sample for using {@link FileServiceClient#createShare(String, Map, Integer)} with metadata
+ * Generates a code sample for using {@link FileStorageClient#createShare(String, Map, Integer)} with metadata
*/
public void createShareWithMetadata() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.createShare#string-map-integer.metadata
- Response response = fileServiceClient.createShare("test",
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.createShare#string-map-integer.metadata
+ Response response = fileStorageClient.createShare("test",
Collections.singletonMap("share", "metadata"), null);
System.out.printf("Creating the share completed with status code %d", response.statusCode());
- // END: com.azure.storage.file.fileServiceClient.createShare#string-map-integer.metadata
+ // END: com.azure.storage.file.fileStorageClient.createShare#string-map-integer.metadata
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#createShare(String, Map, Integer)} with metadata
+ * Generates a code sample for using {@link FileStorageAsyncClient#createShare(String, Map, Integer)} with metadata
*/
public void createShareAsyncWithMetadata() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.createShare#string-map-integer.metadata
- fileServiceAsyncClient.createShare("test", Collections.singletonMap("share", "metadata"), null)
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.createShare#string-map-integer.metadata
+ fileStorageAsyncClient.createShare("test", Collections.singletonMap("share", "metadata"), null)
.subscribe(
response -> System.out.printf("Creating the share completed with status code %d", response.statusCode()),
error -> System.err.print(error.toString()),
() -> System.out.println("Complete creating the share!")
);
- // END: com.azure.storage.file.fileServiceAsyncClient.createShare#string-map-integer.metadata
+ // END: com.azure.storage.file.fileStorageAsyncClient.createShare#string-map-integer.metadata
}
/**
- * Generates a code sample for using {@link FileServiceClient#createShare(String, Map, Integer)} with quota.
+ * Generates a code sample for using {@link FileStorageClient#createShare(String, Map, Integer)} with quota.
*/
public void createShareWithQuota() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.createShare#string-map-integer.quota
- Response response = fileServiceClient.createShare("test", null, 10);
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.createShare#string-map-integer.quota
+ Response response = fileStorageClient.createShare("test", null, 10);
System.out.printf("Creating the share completed with status code %d", response.statusCode());
- // END: com.azure.storage.file.fileServiceClient.createShare#string-map-integer.quota
+ // END: com.azure.storage.file.fileStorageClient.createShare#string-map-integer.quota
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#createShare(String, Map, Integer)} with quota.
+ * Generates a code sample for using {@link FileStorageAsyncClient#createShare(String, Map, Integer)} with quota.
*/
public void createShareAsyncWithQuota() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.createShare#string-map-integer.quota
- fileServiceAsyncClient.createShare("test", null, 10)
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.createShare#string-map-integer.quota
+ fileStorageAsyncClient.createShare("test", null, 10)
.subscribe(
response -> System.out.printf("Creating the share completed with status code %d",
response.statusCode()),
error -> System.err.print(error.toString()),
() -> System.out.println("Complete creating the share!")
);
- // END: com.azure.storage.file.fileServiceAsyncClient.createShare#string-map-integer.quota
+ // END: com.azure.storage.file.fileStorageAsyncClient.createShare#string-map-integer.quota
}
/**
- * Generates a code sample for using {@link FileServiceClient#listShares()}
+ * Generates a code sample for using {@link FileStorageClient#listShares()}
*/
public void listShares() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.listShares
- fileServiceClient.listShares().forEach(
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.listShares
+ fileStorageClient.listShares().forEach(
shareItem -> System.out.printf("Share %s exists in the account", shareItem.name())
);
- // END: com.azure.storage.file.fileServiceClient.listShares
+ // END: com.azure.storage.file.fileStorageClient.listShares
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#listShares()}
+ * Generates a code sample for using {@link FileStorageAsyncClient#listShares()}
*/
public void listSharesAsync() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.listShares
- fileServiceAsyncClient.listShares().subscribe(
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.listShares
+ fileStorageAsyncClient.listShares().subscribe(
shareItem -> System.out.printf("Share %s exists in the account", shareItem.name()),
error -> System.err.print(error.toString()),
() -> System.out.println("Complete listing the shares!")
);
- // END: com.azure.storage.file.fileServiceAsyncClient.listShares
+ // END: com.azure.storage.file.fileStorageAsyncClient.listShares
}
/**
- * Generates a code sample for using {@link FileServiceClient#listShares(ListSharesOptions)} of prefix.
+ * Generates a code sample for using {@link FileStorageClient#listShares(ListSharesOptions)} of prefix.
*/
public void listSharesWithPrefix() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.listShares#ListSharesOptions.prefix
- fileServiceClient.listShares(new ListSharesOptions().prefix("azure")).forEach(
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.listShares#ListSharesOptions.prefix
+ fileStorageClient.listShares(new ListSharesOptions().prefix("azure")).forEach(
shareItem -> System.out.printf("Share %s exists in the account", shareItem.name())
);
- // END: com.azure.storage.file.fileServiceClient.listShares#ListSharesOptions.prefix
+ // END: com.azure.storage.file.fileStorageClient.listShares#ListSharesOptions.prefix
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#listShares(ListSharesOptions)} of prefix.
+ * Generates a code sample for using {@link FileStorageAsyncClient#listShares(ListSharesOptions)} of prefix.
*/
public void listSharesAsyncWithPrefix() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.listShares#ListSharesOptions.prefix
- fileServiceAsyncClient.listShares(new ListSharesOptions().prefix("azure")).subscribe(
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.listShares#ListSharesOptions.prefix
+ fileStorageAsyncClient.listShares(new ListSharesOptions().prefix("azure")).subscribe(
shareItem -> System.out.printf("Share %s exists in the account", shareItem.name()),
error -> System.err.print(error.toString()),
() -> System.out.println("Complete listing the shares!")
);
- // END: com.azure.storage.file.fileServiceAsyncClient.listShares#ListSharesOptions.prefix
+ // END: com.azure.storage.file.fileStorageAsyncClient.listShares#ListSharesOptions.prefix
}
/**
- * Generates a code sample for using {@link FileServiceClient#listShares(ListSharesOptions)} of metadata and snapshot.
+ * Generates a code sample for using {@link FileStorageClient#listShares(ListSharesOptions)} of metadata and snapshot.
*/
public void listSharesWithMetadataAndSnapshot() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.listShares#ListSharesOptions.metadata.snapshot
- fileServiceClient.listShares(new ListSharesOptions().includeMetadata(true)
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.listShares#ListSharesOptions.metadata.snapshot
+ fileStorageClient.listShares(new ListSharesOptions().includeMetadata(true)
.includeSnapshots(true)).forEach(
shareItem -> System.out.printf("Share %s exists in the account", shareItem.name())
);
- // END: com.azure.storage.file.fileServiceClient.listShares#ListSharesOptions.metadata.snapshot
+ // END: com.azure.storage.file.fileStorageClient.listShares#ListSharesOptions.metadata.snapshot
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#listShares(ListSharesOptions)} of metadata and snapshot.
+ * Generates a code sample for using {@link FileStorageAsyncClient#listShares(ListSharesOptions)} of metadata and snapshot.
*/
public void listSharesAsyncWithOverload() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.listShares#ListSharesOptions.metadata.snapshot
- fileServiceAsyncClient.listShares(new ListSharesOptions().includeMetadata(true)
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.listShares#ListSharesOptions.metadata.snapshot
+ fileStorageAsyncClient.listShares(new ListSharesOptions().includeMetadata(true)
.includeSnapshots(true)).subscribe(
shareItem -> System.out.printf("Share %s exists in the account", shareItem.name()),
error -> System.err.print(error.toString()),
() -> System.out.println("Complete listing the shares!")
);
- // END: com.azure.storage.file.fileServiceAsyncClient.listShares#ListSharesOptions.metadata.snapshot
+ // END: com.azure.storage.file.fileStorageAsyncClient.listShares#ListSharesOptions.metadata.snapshot
}
/**
- * Generates a code sample for using {@link FileServiceClient#deleteShare(String)}
+ * Generates a code sample for using {@link FileStorageClient#deleteShare(String)}
*/
public void deleteShare() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.deleteShare#string
- fileServiceClient.deleteShare("myshare");
- // END: com.azure.storage.file.fileServiceClient.deleteShare#string
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.deleteShare#string
+ fileStorageClient.deleteShare("myshare");
+ // END: com.azure.storage.file.fileStorageClient.deleteShare#string
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#deleteShare(String)}
+ * Generates a code sample for using {@link FileStorageAsyncClient#deleteShare(String)}
*/
public void deleteShareAsync() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.deleteShare#string
- fileServiceAsyncClient.deleteShare("test").subscribe(
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.deleteShare#string
+ fileStorageAsyncClient.deleteShare("test").subscribe(
response -> System.out.println("Deleting the share completed with status code: " + response.statusCode())
);
- // END: com.azure.storage.file.fileServiceAsyncClient.deleteShare#string
+ // END: com.azure.storage.file.fileStorageAsyncClient.deleteShare#string
}
/**
- * Generates a code sample for using {@link FileServiceClient#deleteShare(String, String)}
+ * Generates a code sample for using {@link FileStorageClient#deleteShare(String, String)}
*/
public void deleteShareMaxOverload() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.deleteShare#string-string
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.deleteShare#string-string
OffsetDateTime midnight = OffsetDateTime.of(LocalDateTime.now(), ZoneOffset.UTC);
- VoidResponse response = fileServiceClient.deleteShare("test", midnight.toString());
+ VoidResponse response = fileStorageClient.deleteShare("test", midnight.toString());
System.out.printf("Deleting the snapshot completed with status code %d", response.statusCode());
- // END: com.azure.storage.file.fileServiceClient.deleteShare#string-string
+ // END: com.azure.storage.file.fileStorageClient.deleteShare#string-string
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#deleteShare(String, String)}
+ * Generates a code sample for using {@link FileStorageAsyncClient#deleteShare(String, String)}
*/
public void deleteShareAsyncMaxOverload() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.deleteShare#string-string
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.deleteShare#string-string
OffsetDateTime midnight = OffsetDateTime.of(LocalDateTime.now(), ZoneOffset.UTC);
- fileServiceAsyncClient.deleteShare("test", midnight.toString())
+ fileStorageAsyncClient.deleteShare("test", midnight.toString())
.subscribe(response -> System.out.printf("Deleting the snapshot completed with status code %d",
response.statusCode()));
- // END: com.azure.storage.file.fileServiceAsyncClient.deleteShare#string-string
+ // END: com.azure.storage.file.fileStorageAsyncClient.deleteShare#string-string
}
/**
- * Generates a code sample for using {@link FileServiceClient#getProperties()}
+ * Generates a code sample for using {@link FileStorageClient#getProperties()}
*/
public void getProperties() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.getProperties
- FileServiceProperties properties = fileServiceClient.getProperties().value();
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.getProperties
+ FileServiceProperties properties = fileStorageClient.getProperties().value();
System.out.printf("Hour metrics enabled: %b, Minute metrics enabled: %b", properties.hourMetrics().enabled(),
properties.minuteMetrics().enabled());
- // END: com.azure.storage.file.fileServiceClient.getProperties
+ // END: com.azure.storage.file.fileStorageClient.getProperties
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#getProperties()}
+ * Generates a code sample for using {@link FileStorageAsyncClient#getProperties()}
*/
public void getPropertiesAsync() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.getProperties
- fileServiceAsyncClient.getProperties()
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.getProperties
+ fileStorageAsyncClient.getProperties()
.subscribe(response -> {
FileServiceProperties properties = response.value();
System.out.printf("Hour metrics enabled: %b, Minute metrics enabled: %b",
properties.hourMetrics().enabled(), properties.minuteMetrics().enabled());
});
- // END: com.azure.storage.file.fileServiceAsyncClient.getProperties
+ // END: com.azure.storage.file.fileStorageAsyncClient.getProperties
}
/**
- * Generates a code sample for using {@link FileServiceClient#setProperties(FileServiceProperties)}
+ * Generates a code sample for using {@link FileStorageClient#setProperties(FileServiceProperties)}
*/
public void setProperties() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.setProperties#fileServiceProperties
- FileServiceProperties properties = fileServiceClient.getProperties().value();
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.setProperties#fileServiceProperties
+ FileServiceProperties properties = fileStorageClient.getProperties().value();
properties.minuteMetrics().enabled(true);
properties.hourMetrics().enabled(true);
- VoidResponse response = fileServiceClient.setProperties(properties);
+ VoidResponse response = fileStorageClient.setProperties(properties);
System.out.printf("Setting File service properties completed with status code %d", response.statusCode());
- // END: com.azure.storage.file.fileServiceClient.setProperties#fileServiceProperties
+ // END: com.azure.storage.file.fileStorageClient.setProperties#fileServiceProperties
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#setProperties(FileServiceProperties)}
+ * Generates a code sample for using {@link FileStorageAsyncClient#setProperties(FileServiceProperties)}
*/
public void setPropertiesAsync() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.setProperties#fileServiceProperties
- FileServiceProperties properties = fileServiceAsyncClient.getProperties().block().value();
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.setProperties#fileServiceProperties
+ FileServiceProperties properties = fileStorageAsyncClient.getProperties().block().value();
properties.minuteMetrics().enabled(true);
properties.hourMetrics().enabled(true);
- fileServiceAsyncClient.setProperties(properties)
+ fileStorageAsyncClient.setProperties(properties)
.subscribe(response -> System.out.printf("Setting File service properties completed with status code %d",
response.statusCode()));
- // END: com.azure.storage.file.fileServiceAsyncClient.setProperties#fileServiceProperties
+ // END: com.azure.storage.file.fileStorageAsyncClient.setProperties#fileServiceProperties
}
/**
- * Generates a code sample for using {@link FileServiceClient#setProperties(FileServiceProperties)} to clear CORS in file service.
+ * Generates a code sample for using {@link FileStorageClient#setProperties(FileServiceProperties)} to clear CORS in file service.
*/
public void clearProperties() {
- FileServiceClient fileServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceClient.setProperties#fileServiceProperties.clearCORS
- FileServiceProperties properties = fileServiceClient.getProperties().value();
+ FileStorageClient fileStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageClient.setProperties#fileServiceProperties.clearCORS
+ FileServiceProperties properties = fileStorageClient.getProperties().value();
properties.cors(Collections.emptyList());
- VoidResponse response = fileServiceClient.setProperties(properties);
+ VoidResponse response = fileStorageClient.setProperties(properties);
System.out.printf("Setting File service properties completed with status code %d", response.statusCode());
- // END: com.azure.storage.file.fileServiceClient.setProperties#fileServiceProperties.clearCORS
+ // END: com.azure.storage.file.fileStorageClient.setProperties#fileServiceProperties.clearCORS
}
/**
- * Generates a code sample for using {@link FileServiceAsyncClient#setProperties(FileServiceProperties)} to clear CORS in file service.
+ * Generates a code sample for using {@link FileStorageAsyncClient#setProperties(FileServiceProperties)} to clear CORS in file service.
*/
public void clearPropertiesAsync() {
- FileServiceAsyncClient fileServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.file.fileServiceAsyncClient.setProperties#fileServiceProperties.clearCORS
- FileServiceProperties properties = fileServiceAsyncClient.getProperties().block().value();
+ FileStorageAsyncClient fileStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.file.fileStorageAsyncClient.setProperties#fileServiceProperties.clearCORS
+ FileServiceProperties properties = fileStorageAsyncClient.getProperties().block().value();
properties.cors(Collections.emptyList());
- fileServiceAsyncClient.setProperties(properties)
+ fileStorageAsyncClient.setProperties(properties)
.subscribe(response -> System.out.printf("Setting File service properties completed with status code %d",
response.statusCode()));
- // END: com.azure.storage.file.fileServiceAsyncClient.setProperties#fileServiceProperties.clearCORS
+ // END: com.azure.storage.file.fileStorageAsyncClient.setProperties#fileServiceProperties.clearCORS
}
}
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/DirectoryAsyncClientTests.java b/storage/client/file/src/test/java/com/azure/storage/file/DirectoryAsyncClientTests.java
index 7fc208fd3f222..f04bda990b2be 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/DirectoryAsyncClientTests.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/DirectoryAsyncClientTests.java
@@ -35,7 +35,6 @@ public void beforeTest() {
if (interceptorManager.isPlaybackMode()) {
client = setupClient((connectionString, endpoint) -> new DirectoryClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.shareName(shareName)
.directoryPath(dirName)
.httpClient(interceptorManager.getPlaybackClient())
@@ -44,7 +43,6 @@ public void beforeTest() {
} else {
client = setupClient((connectionString, endpoint) -> new DirectoryClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.shareName(shareName)
.directoryPath(dirName)
.httpClient(HttpClient.createDefault().wiretap(true))
@@ -59,10 +57,10 @@ public static void beforeClass() {
if (FileTestHelpers.getTestMode() == TestMode.PLAYBACK) {
return;
}
- FileServiceClient fileServiceClient = new FileServiceClientBuilder()
+ FileStorageClient fileStorageClient = new FileStorageClientBuilder()
.connectionString(ConfigurationManager.getConfiguration().get("AZURE_STORAGE_CONNECTION_STRING"))
.buildClient();
- shareClient = fileServiceClient.getShareClient(shareName);
+ shareClient = fileStorageClient.getShareClient(shareName);
shareClient.create();
}
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/DirectoryClientTests.java b/storage/client/file/src/test/java/com/azure/storage/file/DirectoryClientTests.java
index 64103f0d110d4..70a340a467a70 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/DirectoryClientTests.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/DirectoryClientTests.java
@@ -31,7 +31,6 @@ public void beforeTest() {
if (interceptorManager.isPlaybackMode()) {
directoryClient = setupClient((connectionString, endpoint) -> new DirectoryClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.shareName(shareName)
.directoryPath(dirName)
.httpClient(interceptorManager.getPlaybackClient())
@@ -40,7 +39,6 @@ public void beforeTest() {
} else {
directoryClient = setupClient((connectionString, endpoint) -> new DirectoryClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.shareName(shareName)
.directoryPath(dirName)
.httpClient(HttpClient.createDefault().wiretap(true))
@@ -55,10 +53,10 @@ public static void beforeClass() {
if (FileTestHelpers.getTestMode() == TestMode.PLAYBACK) {
return;
}
- FileServiceClient fileServiceClient = new FileServiceClientBuilder()
+ FileStorageClient fileStorageClient = new FileStorageClientBuilder()
.connectionString(ConfigurationManager.getConfiguration().get("AZURE_STORAGE_CONNECTION_STRING"))
.buildClient();
- shareClient = fileServiceClient.getShareClient(shareName);
+ shareClient = fileStorageClient.getShareClient(shareName);
shareClient.create();
}
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/FileAsyncClientTest.java b/storage/client/file/src/test/java/com/azure/storage/file/FileAsyncClientTest.java
index 3f8199113888c..2c2d14db24f80 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/FileAsyncClientTest.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/FileAsyncClientTest.java
@@ -39,7 +39,6 @@ public void beforeTest() {
.connectionString(connectionString)
.shareName(shareName)
.filePath(filePath)
- .endpoint(endpoint)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.buildAsyncClient(), true, fileAsyncLogger);
@@ -48,7 +47,6 @@ public void beforeTest() {
.connectionString(connectionString)
.shareName(shareName)
.filePath(filePath)
- .endpoint(endpoint)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.addPolicy(interceptorManager.getRecordPolicy())
@@ -60,10 +58,10 @@ public static void beforeClass() {
if (FileTestHelpers.getTestMode() == TestMode.PLAYBACK) {
return;
}
- FileServiceClient fileServiceClient = new FileServiceClientBuilder()
+ FileStorageClient fileStorageClient = new FileStorageClientBuilder()
.connectionString(ConfigurationManager.getConfiguration().get("AZURE_STORAGE_CONNECTION_STRING"))
.buildClient();
- shareClient = fileServiceClient.getShareClient(shareName);
+ shareClient = fileStorageClient.getShareClient(shareName);
shareClient.create();
shareClient.createDirectory(dirName);
}
@@ -98,7 +96,7 @@ public void createExcessMaxSizeFromFileClient() {
}
@Override
- public void startCopy() throws Exception {
+ public void startCopy() {
fileAsyncClient.create(1024).block();
String sourceURL = fileAsyncClient.getFileUrl().toString() + "/" + shareName + "/" + filePath;
StepVerifier.create(fileAsyncClient.startCopy(sourceURL, null))
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/FileClientTest.java b/storage/client/file/src/test/java/com/azure/storage/file/FileClientTest.java
index 2ba243ff90464..985fd4b64d7d9 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/FileClientTest.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/FileClientTest.java
@@ -42,7 +42,6 @@ public void beforeTest() {
.connectionString(connectionString)
.shareName(shareName)
.filePath(filePath)
- .endpoint(endpoint)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.buildClient(), true, fileLogger);
@@ -51,7 +50,6 @@ public void beforeTest() {
.connectionString(connectionString)
.shareName(shareName)
.filePath(filePath)
- .endpoint(endpoint)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.addPolicy(interceptorManager.getRecordPolicy())
@@ -63,10 +61,10 @@ public static void beforeClass() {
if (FileTestHelpers.getTestMode() == TestMode.PLAYBACK) {
return;
}
- FileServiceClient fileServiceClient = new FileServiceClientBuilder()
+ FileStorageClient fileStorageClient = new FileStorageClientBuilder()
.connectionString(ConfigurationManager.getConfiguration().get("AZURE_STORAGE_CONNECTION_STRING"))
.buildClient();
- shareClient = fileServiceClient.getShareClient(shareName);
+ shareClient = fileStorageClient.getShareClient(shareName);
shareClient.create();
shareClient.createDirectory(dirName);
}
@@ -93,7 +91,7 @@ public void createExcessMaxSizeFromFileClient() {
}
@Override
- public void startCopy() throws Exception {
+ public void startCopy() {
FileTestHelpers.assertResponseStatusCode(fileClient.create(1024, null, null), 201);
String sourceURL = fileClient.getFileUrl().toString() + "/" + shareName + "/" + filePath;
Response copyInfoResponse = fileClient.startCopy(sourceURL, null);
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/FileClientTestBase.java b/storage/client/file/src/test/java/com/azure/storage/file/FileClientTestBase.java
index 9aba9e055bbc3..766b8b4e72562 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/FileClientTestBase.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/FileClientTestBase.java
@@ -44,7 +44,7 @@ protected String testName() {
public abstract void createExcessMaxSizeFromFileClient();
@Test
- public abstract void startCopy() throws Exception;
+ public abstract void startCopy();
@Test
public abstract void abortCopy();
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/FileServiceClientAsyncTests.java b/storage/client/file/src/test/java/com/azure/storage/file/FileStorageClientAsyncTests.java
similarity index 82%
rename from storage/client/file/src/test/java/com/azure/storage/file/FileServiceClientAsyncTests.java
rename to storage/client/file/src/test/java/com/azure/storage/file/FileStorageClientAsyncTests.java
index cc302acca59a5..2036c4f41423f 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/FileServiceClientAsyncTests.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/FileStorageClientAsyncTests.java
@@ -8,7 +8,6 @@
import com.azure.core.util.logging.ClientLogger;
import com.azure.storage.file.models.CorsRule;
import com.azure.storage.file.models.FileServiceProperties;
-import com.azure.storage.file.models.ListSharesOptions;
import com.azure.storage.file.models.Metrics;
import com.azure.storage.file.models.RetentionPolicy;
import com.azure.storage.file.models.ShareItem;
@@ -25,40 +24,38 @@
import static com.azure.storage.file.FileTestHelpers.setupClient;
import static org.junit.Assert.fail;
-public class FileServiceClientAsyncTests extends FileServiceClientTestBase {
- private final ClientLogger fileServiceAsyncLogger = new ClientLogger(FileServiceClientAsyncTests.class);
+public class FileStorageClientAsyncTests extends FileStorageClientTestBase {
+ private final ClientLogger fileStorageAsyncLogger = new ClientLogger(FileStorageClientAsyncTests.class);
- private FileServiceAsyncClient fileServiceAsyncClient;
+ private FileStorageAsyncClient fileStorageAsyncClient;
@Override
public void beforeTest() {
shareName = getShareName();
if (interceptorManager.isPlaybackMode()) {
- fileServiceAsyncClient = setupClient((connectionString, endpoint) -> new FileServiceClientBuilder()
+ fileStorageAsyncClient = setupClient((connectionString, endpoint) -> new FileStorageClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
- .buildAsyncClient(), true, fileServiceAsyncLogger);
+ .buildAsyncClient(), true, fileStorageAsyncLogger);
} else {
- fileServiceAsyncClient = setupClient((connectionString, endpoint) -> new FileServiceClientBuilder()
+ fileStorageAsyncClient = setupClient((connectionString, endpoint) -> new FileStorageClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.addPolicy(interceptorManager.getRecordPolicy())
- .buildAsyncClient(), false, fileServiceAsyncLogger);
+ .buildAsyncClient(), false, fileStorageAsyncLogger);
}
}
@Override
public void afterTest() {
- fileServiceAsyncClient.listShares(new ListSharesOptions().prefix(shareName))
+ fileStorageAsyncClient.listShares()
.collectList()
.block()
.forEach(share -> {
- ShareAsyncClient client = fileServiceAsyncClient.getShareAsyncClient(share.name());
+ ShareAsyncClient client = fileStorageAsyncClient.getShareAsyncClient(share.name());
try {
client.delete().block();
} catch (StorageErrorException ex) {
@@ -69,7 +66,7 @@ public void afterTest() {
@Override
public void getShareDoesNotCreateAShare() {
- ShareAsyncClient client = fileServiceAsyncClient.getShareAsyncClient(shareName);
+ ShareAsyncClient client = fileStorageAsyncClient.getShareAsyncClient(shareName);
try {
client.getStatistics().block();
fail("getShareAsyncClient shouldn't create a share in Azure.");
@@ -80,18 +77,18 @@ public void getShareDoesNotCreateAShare() {
@Override
public void createShare() {
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
}
@Override
public void createShareTwiceSameMetadata() {
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 409));
}
@@ -99,68 +96,68 @@ public void createShareTwiceSameMetadata() {
public void createShareTwiceDifferentMetadata() {
Map metadata = Collections.singletonMap("test", "metadata");
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName, metadata, null))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName, metadata, null))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 409));
}
@Override
public void createShareInvalidQuota() {
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName, null, -1))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName, null, -1))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 400));
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName, null, 9999999))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName, null, 9999999))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 400));
}
@Override
public void deleteShare() {
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
- StepVerifier.create(fileServiceAsyncClient.deleteShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.deleteShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 202))
.verifyComplete();
}
@Override
public void deleteShareDoesNotExist() {
- StepVerifier.create(fileServiceAsyncClient.deleteShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.deleteShare(shareName))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 404));
}
@Override
- public void deleteThenCreateShareFromFileServiceClient() {
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName))
+ public void deleteThenCreateShareFromFileStorageClient() {
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
- StepVerifier.create(fileServiceAsyncClient.deleteShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.deleteShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 202))
.verifyComplete();
FileTestHelpers.sleepInRecordMode(Duration.ofSeconds(45));
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
}
@Override
- public void deleteThenCreateShareTooSoonFromFileServiceClient() {
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName))
+ public void deleteThenCreateShareTooSoonFromFileStorageClient() {
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
- StepVerifier.create(fileServiceAsyncClient.deleteShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.deleteShare(shareName))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 202))
.verifyComplete();
- StepVerifier.create(fileServiceAsyncClient.createShare(shareName))
+ StepVerifier.create(fileStorageAsyncClient.createShare(shareName))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 409));
}
@@ -172,12 +169,12 @@ public void listShares() {
.properties(new ShareProperties().quota(2));
testShares.add(share);
- StepVerifier.create(fileServiceAsyncClient.createShare(share.name(), share.metadata(), share.properties().quota()))
+ StepVerifier.create(fileStorageAsyncClient.createShare(share.name(), share.metadata(), share.properties().quota()))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
}
- StepVerifier.create(fileServiceAsyncClient.listShares(defaultOptions()))
+ StepVerifier.create(fileStorageAsyncClient.listShares(defaultOptions()))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
@@ -197,12 +194,12 @@ public void listSharesWithPrefix() {
share.name(shareName + i);
}
- StepVerifier.create(fileServiceAsyncClient.createShare(share.name(), share.metadata(), share.properties().quota()))
+ StepVerifier.create(fileStorageAsyncClient.createShare(share.name(), share.metadata(), share.properties().quota()))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
}
- StepVerifier.create(fileServiceAsyncClient.listShares(defaultOptions().prefix(shareName + "prefix")))
+ StepVerifier.create(fileStorageAsyncClient.listShares(defaultOptions().prefix(shareName + "prefix")))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.verifyComplete();
@@ -216,12 +213,12 @@ public void listSharesWithLimit() {
.properties(new ShareProperties().quota(2));
testShares.add(share);
- StepVerifier.create(fileServiceAsyncClient.createShare(share.name(), share.metadata(), share.properties().quota()))
+ StepVerifier.create(fileStorageAsyncClient.createShare(share.name(), share.metadata(), share.properties().quota()))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
}
- StepVerifier.create(fileServiceAsyncClient.listShares(defaultOptions().maxResults(2)))
+ StepVerifier.create(fileStorageAsyncClient.listShares(defaultOptions().maxResults(2)))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.verifyComplete();
@@ -229,10 +226,10 @@ public void listSharesWithLimit() {
@Override
public void listSharesInvalidMaxResults() {
- StepVerifier.create(fileServiceAsyncClient.listShares(defaultOptions().maxResults(-1)))
+ StepVerifier.create(fileStorageAsyncClient.listShares(defaultOptions().maxResults(-1)))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 400));
- StepVerifier.create(fileServiceAsyncClient.listShares(defaultOptions().maxResults(0)))
+ StepVerifier.create(fileStorageAsyncClient.listShares(defaultOptions().maxResults(0)))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 400));
}
@@ -250,12 +247,12 @@ public void listSharesIncludeMetadata() {
}
testShares.add(share);
- StepVerifier.create(fileServiceAsyncClient.createShare(share.name(), share.metadata(), share.properties().quota()))
+ StepVerifier.create(fileStorageAsyncClient.createShare(share.name(), share.metadata(), share.properties().quota()))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
.verifyComplete();
}
- StepVerifier.create(fileServiceAsyncClient.listShares(defaultOptions().includeMetadata(true)))
+ StepVerifier.create(fileStorageAsyncClient.listShares(defaultOptions().includeMetadata(true)))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
@@ -269,7 +266,7 @@ public void listSharesIncludeSnapshots() {
ShareItem share = new ShareItem().name(shareName + i)
.properties(new ShareProperties().quota(2));
- ShareAsyncClient client = fileServiceAsyncClient.getShareAsyncClient(share.name());
+ ShareAsyncClient client = fileStorageAsyncClient.getShareAsyncClient(share.name());
StepVerifier.create(client.create(null, share.properties().quota()))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
@@ -290,7 +287,7 @@ public void listSharesIncludeSnapshots() {
testShares.add(share);
}
- StepVerifier.create(fileServiceAsyncClient.listShares(defaultOptions().includeSnapshots(true)))
+ StepVerifier.create(fileStorageAsyncClient.listShares(defaultOptions().includeSnapshots(true)))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
@@ -312,7 +309,7 @@ public void listSharesIncludeMetadataAndSnapshots() {
share.metadata(metadata);
}
- ShareAsyncClient client = fileServiceAsyncClient.getShareAsyncClient(share.name());
+ ShareAsyncClient client = fileStorageAsyncClient.getShareAsyncClient(share.name());
StepVerifier.create(client.create(share.metadata(), share.properties().quota()))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 201))
@@ -333,7 +330,7 @@ public void listSharesIncludeMetadataAndSnapshots() {
testShares.add(share);
}
- StepVerifier.create(fileServiceAsyncClient.listShares(defaultOptions().includeMetadata(true).includeSnapshots(true)))
+ StepVerifier.create(fileStorageAsyncClient.listShares(defaultOptions().includeMetadata(true).includeSnapshots(true)))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
.assertNext(share -> FileTestHelpers.assertSharesAreEqual(testShares.pop(), share))
@@ -344,7 +341,7 @@ public void listSharesIncludeMetadataAndSnapshots() {
@Override
public void setFileServiceProperties() {
- FileServiceProperties originalProperties = fileServiceAsyncClient.getProperties().block().value();
+ FileServiceProperties originalProperties = fileStorageAsyncClient.getProperties().block().value();
RetentionPolicy retentionPolicy = new RetentionPolicy().enabled(true)
.days(3);
@@ -358,19 +355,19 @@ public void setFileServiceProperties() {
.minuteMetrics(metrics)
.cors(new ArrayList<>());
- StepVerifier.create(fileServiceAsyncClient.setProperties(updatedProperties))
+ StepVerifier.create(fileStorageAsyncClient.setProperties(updatedProperties))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 202))
.verifyComplete();
- StepVerifier.create(fileServiceAsyncClient.getProperties())
+ StepVerifier.create(fileStorageAsyncClient.getProperties())
.assertNext(response -> FileTestHelpers.assertFileServicePropertiesAreEqual(updatedProperties, response.value()))
.verifyComplete();
- StepVerifier.create(fileServiceAsyncClient.setProperties(originalProperties))
+ StepVerifier.create(fileStorageAsyncClient.setProperties(originalProperties))
.assertNext(response -> FileTestHelpers.assertResponseStatusCode(response, 202))
.verifyComplete();
- StepVerifier.create(fileServiceAsyncClient.getProperties())
+ StepVerifier.create(fileStorageAsyncClient.getProperties())
.assertNext(response -> FileTestHelpers.assertFileServicePropertiesAreEqual(originalProperties, response.value()))
.verifyComplete();
}
@@ -394,7 +391,7 @@ public void setPropertiesTooManyRules() {
.minuteMetrics(metrics)
.cors(cors);
- StepVerifier.create(fileServiceAsyncClient.setProperties(properties))
+ StepVerifier.create(fileStorageAsyncClient.setProperties(properties))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 400));
}
@@ -412,7 +409,7 @@ public void setPropertiesInvalidAllowedHeader() {
.minuteMetrics(metrics)
.cors(Collections.singletonList(new CorsRule().allowedHeaders(reallyLongString)));
- StepVerifier.create(fileServiceAsyncClient.setProperties(properties))
+ StepVerifier.create(fileStorageAsyncClient.setProperties(properties))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 400));
}
@@ -430,7 +427,7 @@ public void setPropertiesInvalidExposedHeader() {
.minuteMetrics(metrics)
.cors(Collections.singletonList(new CorsRule().exposedHeaders(reallyLongString)));
- StepVerifier.create(fileServiceAsyncClient.setProperties(properties))
+ StepVerifier.create(fileStorageAsyncClient.setProperties(properties))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 400));
}
@@ -448,7 +445,7 @@ public void setPropertiesInvalidAllowedOrigin() {
.minuteMetrics(metrics)
.cors(Collections.singletonList(new CorsRule().allowedOrigins(reallyLongString)));
- StepVerifier.create(fileServiceAsyncClient.setProperties(properties))
+ StepVerifier.create(fileStorageAsyncClient.setProperties(properties))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 400));
}
@@ -466,7 +463,7 @@ public void setPropertiesInvalidAllowedMethod() {
.minuteMetrics(metrics)
.cors(Collections.singletonList(new CorsRule().allowedMethods("NOTAREALHTTPMETHOD")));
- StepVerifier.create(fileServiceAsyncClient.setProperties(properties))
+ StepVerifier.create(fileStorageAsyncClient.setProperties(properties))
.verifyErrorSatisfies(throwable -> FileTestHelpers.assertExceptionStatusCode(throwable, 400));
}
}
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/FileServiceClientTestBase.java b/storage/client/file/src/test/java/com/azure/storage/file/FileStorageClientTestBase.java
similarity index 93%
rename from storage/client/file/src/test/java/com/azure/storage/file/FileServiceClientTestBase.java
rename to storage/client/file/src/test/java/com/azure/storage/file/FileStorageClientTestBase.java
index 6a34f910052f3..ddc837e20a28c 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/FileServiceClientTestBase.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/FileStorageClientTestBase.java
@@ -9,7 +9,7 @@
import org.junit.Test;
import org.junit.rules.TestName;
-public abstract class FileServiceClientTestBase extends TestBase {
+public abstract class FileStorageClientTestBase extends TestBase {
String shareName;
String reallyLongString = "thisisareallylongstringthatexceedsthe64characterlimitallowedoncertainproperties";
@@ -60,13 +60,13 @@ ListSharesOptions defaultOptions() {
public abstract void deleteShareDoesNotExist();
@Test
- public abstract void deleteThenCreateShareFromFileServiceClient();
+ public abstract void deleteThenCreateShareFromFileStorageClient();
/**
* Cannot re-create a share within 30 seconds of it being deleted.
*/
@Test
- public abstract void deleteThenCreateShareTooSoonFromFileServiceClient();
+ public abstract void deleteThenCreateShareTooSoonFromFileStorageClient();
@Test
public abstract void listShares();
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/FileServiceClientTests.java b/storage/client/file/src/test/java/com/azure/storage/file/FileStorageClientTests.java
similarity index 81%
rename from storage/client/file/src/test/java/com/azure/storage/file/FileServiceClientTests.java
rename to storage/client/file/src/test/java/com/azure/storage/file/FileStorageClientTests.java
index 3377458e2584c..96162e2efd186 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/FileServiceClientTests.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/FileStorageClientTests.java
@@ -9,7 +9,6 @@
import com.azure.core.util.logging.ClientLogger;
import com.azure.storage.file.models.CorsRule;
import com.azure.storage.file.models.FileServiceProperties;
-import com.azure.storage.file.models.ListSharesOptions;
import com.azure.storage.file.models.Metrics;
import com.azure.storage.file.models.RetentionPolicy;
import com.azure.storage.file.models.ShareInfo;
@@ -29,37 +28,35 @@
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.fail;
-public class FileServiceClientTests extends FileServiceClientTestBase {
- private final ClientLogger fileServiceLogger = new ClientLogger(FileServiceClientTests.class);
+public class FileStorageClientTests extends FileStorageClientTestBase {
+ private final ClientLogger fileStorageLogger = new ClientLogger(FileStorageClientTests.class);
- private FileServiceClient fileServiceClient;
+ private FileStorageClient fileStorageClient;
@Override
public void beforeTest() {
shareName = getShareName();
if (interceptorManager.isPlaybackMode()) {
- fileServiceClient = setupClient((connectionString, endpoint) -> new FileServiceClientBuilder()
+ fileStorageClient = setupClient((connectionString, endpoint) -> new FileStorageClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
- .buildClient(), true, fileServiceLogger);
+ .buildClient(), true, fileStorageLogger);
} else {
- fileServiceClient = setupClient((connectionString, endpoint) -> new FileServiceClientBuilder()
+ fileStorageClient = setupClient((connectionString, endpoint) -> new FileStorageClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.addPolicy(interceptorManager.getRecordPolicy())
- .buildClient(), false, fileServiceLogger);
+ .buildClient(), false, fileStorageLogger);
}
}
@Override
public void afterTest() {
- for (ShareItem share : fileServiceClient.listShares(new ListSharesOptions().prefix(shareName))) {
- ShareClient client = fileServiceClient.getShareClient(share.name());
+ for (ShareItem share : fileStorageClient.listShares()) {
+ ShareClient client = fileStorageClient.getShareClient(share.name());
try {
client.delete();
} catch (StorageErrorException ex) {
@@ -70,7 +67,7 @@ public void afterTest() {
@Override
public void getShareDoesNotCreateAShare() {
- ShareClient client = fileServiceClient.getShareClient(shareName);
+ ShareClient client = fileStorageClient.getShareClient(shareName);
try {
client.getStatistics();
fail("getShareAsyncClient shouldn't create a share in Azure.");
@@ -81,15 +78,15 @@ public void getShareDoesNotCreateAShare() {
@Override
public void createShare() {
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(shareName), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(shareName), 201);
}
@Override
public void createShareTwiceSameMetadata() {
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(shareName), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(shareName), 201);
try {
- fileServiceClient.createShare(shareName);
+ fileStorageClient.createShare(shareName);
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 409);
}
@@ -99,10 +96,10 @@ public void createShareTwiceSameMetadata() {
public void createShareTwiceDifferentMetadata() {
Map metadata = Collections.singletonMap("test", "metadata");
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(shareName), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(shareName), 201);
try {
- fileServiceClient.createShare(shareName, metadata, null);
+ fileStorageClient.createShare(shareName, metadata, null);
fail("Attempting to create the share twice with different metadata should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 409);
@@ -112,14 +109,14 @@ public void createShareTwiceDifferentMetadata() {
@Override
public void createShareInvalidQuota() {
try {
- fileServiceClient.createShare(shareName, null, -1);
+ fileStorageClient.createShare(shareName, null, -1);
fail("Attempting to create a share with a negative quota should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 400);
}
try {
- fileServiceClient.createShare(shareName, null, 9999999);
+ fileStorageClient.createShare(shareName, null, 9999999);
fail("Attempting to create a share with a quota above 5120 GB should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 400);
@@ -128,14 +125,14 @@ public void createShareInvalidQuota() {
@Override
public void deleteShare() {
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(shareName), 201);
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.deleteShare(shareName), 202);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(shareName), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.deleteShare(shareName), 202);
}
@Override
public void deleteShareDoesNotExist() {
try {
- fileServiceClient.deleteShare(shareName);
+ fileStorageClient.deleteShare(shareName);
fail("Attempting to delete a share that doesn't exist should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 404);
@@ -143,22 +140,22 @@ public void deleteShareDoesNotExist() {
}
@Override
- public void deleteThenCreateShareFromFileServiceClient() {
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(shareName), 201);
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.deleteShare(shareName), 202);
+ public void deleteThenCreateShareFromFileStorageClient() {
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(shareName), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.deleteShare(shareName), 202);
FileTestHelpers.sleepInRecordMode(Duration.ofSeconds(45));
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(shareName), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(shareName), 201);
}
@Override
- public void deleteThenCreateShareTooSoonFromFileServiceClient() {
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(shareName), 201);
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.deleteShare(shareName), 202);
+ public void deleteThenCreateShareTooSoonFromFileStorageClient() {
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(shareName), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.deleteShare(shareName), 202);
try {
- fileServiceClient.createShare(shareName);
+ fileStorageClient.createShare(shareName);
fail("Attempting to re-create a share within 30 seconds of deleting it should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 409);
@@ -173,10 +170,10 @@ public void listShares() {
.properties(new ShareProperties().quota(2));
testShares.add(share);
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(share.name(), share.metadata(), share.properties().quota()), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(share.name(), share.metadata(), share.properties().quota()), 201);
}
- Iterator shares = fileServiceClient.listShares(defaultOptions()).iterator();
+ Iterator shares = fileStorageClient.listShares(defaultOptions()).iterator();
for (int i = 0; i < 3; i++) {
FileTestHelpers.assertSharesAreEqual(testShares.pop(), shares.next());
}
@@ -196,10 +193,10 @@ public void listSharesWithPrefix() {
share.name(shareName + i);
}
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(share.name(), share.metadata(), share.properties().quota()), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(share.name(), share.metadata(), share.properties().quota()), 201);
}
- Iterator shares = fileServiceClient.listShares(defaultOptions().prefix(shareName + "prefix")).iterator();
+ Iterator shares = fileStorageClient.listShares(defaultOptions().prefix(shareName + "prefix")).iterator();
for (int i = 0; i < 2; i++) {
FileTestHelpers.assertSharesAreEqual(testShares.pop(), shares.next());
}
@@ -214,10 +211,10 @@ public void listSharesWithLimit() {
.properties(new ShareProperties().quota(2));
testShares.add(share);
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(share.name(), share.metadata(), share.properties().quota()), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(share.name(), share.metadata(), share.properties().quota()), 201);
}
- Iterator shares = fileServiceClient.listShares(defaultOptions().maxResults(2)).iterator();
+ Iterator shares = fileStorageClient.listShares(defaultOptions().maxResults(2)).iterator();
for (int i = 0; i < 2; i++) {
FileTestHelpers.assertSharesAreEqual(testShares.pop(), shares.next());
}
@@ -227,14 +224,14 @@ public void listSharesWithLimit() {
@Override
public void listSharesInvalidMaxResults() {
try {
- fileServiceClient.listShares(defaultOptions().maxResults(-1)).iterator().hasNext();
+ fileStorageClient.listShares(defaultOptions().maxResults(-1)).iterator().hasNext();
fail("Attempting to list shares with a negative maximum should throw an error");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 400);
}
try {
- fileServiceClient.listShares(defaultOptions().maxResults(0)).iterator().hasNext();
+ fileStorageClient.listShares(defaultOptions().maxResults(0)).iterator().hasNext();
fail("Attempting to list shares with a zero maximum should throw an error");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 400);
@@ -255,10 +252,10 @@ public void listSharesIncludeMetadata() {
}
testShares.add(share);
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.createShare(share.name(), share.metadata(), share.properties().quota()), 201);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.createShare(share.name(), share.metadata(), share.properties().quota()), 201);
}
- Iterator shares = fileServiceClient.listShares(defaultOptions().includeMetadata(true)).iterator();
+ Iterator shares = fileStorageClient.listShares(defaultOptions().includeMetadata(true)).iterator();
for (int i = 0; i < 3; i++) {
FileTestHelpers.assertSharesAreEqual(testShares.pop(), shares.next());
}
@@ -272,7 +269,7 @@ public void listSharesIncludeSnapshots() {
ShareItem share = new ShareItem().name(shareName + i)
.properties(new ShareProperties().quota(2));
- ShareClient client = fileServiceClient.getShareClient(share.name());
+ ShareClient client = fileStorageClient.getShareClient(share.name());
Response createResponse = client.create(null, share.properties().quota());
FileTestHelpers.assertResponseStatusCode(createResponse, 201);
@@ -289,7 +286,7 @@ public void listSharesIncludeSnapshots() {
testShares.add(share);
}
- Iterator shares = fileServiceClient.listShares(defaultOptions().includeSnapshots(true)).iterator();
+ Iterator shares = fileStorageClient.listShares(defaultOptions().includeSnapshots(true)).iterator();
for (int i = 0; i < 5; i++) {
FileTestHelpers.assertSharesAreEqual(testShares.pop(), shares.next());
}
@@ -309,7 +306,7 @@ public void listSharesIncludeMetadataAndSnapshots() {
share.metadata(metadata);
}
- ShareClient client = fileServiceClient.getShareClient(share.name());
+ ShareClient client = fileStorageClient.getShareClient(share.name());
Response createResponse = client.create(share.metadata(), share.properties().quota());
FileTestHelpers.assertResponseStatusCode(createResponse, 201);
@@ -326,7 +323,7 @@ public void listSharesIncludeMetadataAndSnapshots() {
testShares.add(share);
}
- Iterator shares = fileServiceClient.listShares(defaultOptions().includeMetadata(true).includeSnapshots(true)).iterator();
+ Iterator shares = fileStorageClient.listShares(defaultOptions().includeMetadata(true).includeSnapshots(true)).iterator();
for (int i = 0; i < 5; i++) {
FileTestHelpers.assertSharesAreEqual(testShares.pop(), shares.next());
}
@@ -335,7 +332,7 @@ public void listSharesIncludeMetadataAndSnapshots() {
@Override
public void setFileServiceProperties() {
- FileServiceProperties originalProperties = fileServiceClient.getProperties().value();
+ FileServiceProperties originalProperties = fileStorageClient.getProperties().value();
RetentionPolicy retentionPolicy = new RetentionPolicy().enabled(true)
.days(3);
@@ -349,15 +346,15 @@ public void setFileServiceProperties() {
.minuteMetrics(metrics)
.cors(new ArrayList<>());
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.setProperties(updatedProperties), 202);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.setProperties(updatedProperties), 202);
- Response getResponse = fileServiceClient.getProperties();
+ Response getResponse = fileStorageClient.getProperties();
FileTestHelpers.assertResponseStatusCode(getResponse, 200);
FileTestHelpers.assertFileServicePropertiesAreEqual(updatedProperties, getResponse.value());
- FileTestHelpers.assertResponseStatusCode(fileServiceClient.setProperties(originalProperties), 202);
+ FileTestHelpers.assertResponseStatusCode(fileStorageClient.setProperties(originalProperties), 202);
- getResponse = fileServiceClient.getProperties();
+ getResponse = fileStorageClient.getProperties();
FileTestHelpers.assertResponseStatusCode(getResponse, 200);
FileTestHelpers.assertFileServicePropertiesAreEqual(originalProperties, getResponse.value());
}
@@ -382,7 +379,7 @@ public void setPropertiesTooManyRules() {
.cors(cors);
try {
- fileServiceClient.setProperties(properties);
+ fileStorageClient.setProperties(properties);
fail("Attempting to set more than 5 CorsRules on files should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 400);
@@ -404,7 +401,7 @@ public void setPropertiesInvalidAllowedHeader() {
.cors(Collections.singletonList(new CorsRule().allowedHeaders(reallyLongString)));
try {
- fileServiceClient.setProperties(properties);
+ fileStorageClient.setProperties(properties);
fail("Attempting to set an allowed header longer than 64 characters should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 400);
@@ -426,7 +423,7 @@ public void setPropertiesInvalidExposedHeader() {
.cors(Collections.singletonList(new CorsRule().exposedHeaders(reallyLongString)));
try {
- fileServiceClient.setProperties(properties);
+ fileStorageClient.setProperties(properties);
fail("Attempting to set an exposed header longer than 64 characters should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 400);
@@ -448,7 +445,7 @@ public void setPropertiesInvalidAllowedOrigin() {
.cors(Collections.singletonList(new CorsRule().allowedOrigins(reallyLongString)));
try {
- fileServiceClient.setProperties(properties);
+ fileStorageClient.setProperties(properties);
fail("Attempting to set an allowed origin longer than 64 characters should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 400);
@@ -470,7 +467,7 @@ public void setPropertiesInvalidAllowedMethod() {
.cors(Collections.singletonList(new CorsRule().allowedMethods("NOTAREALHTTPMETHOD")));
try {
- fileServiceClient.setProperties(properties);
+ fileStorageClient.setProperties(properties);
fail("Attempting to set an invalid allowed method should throw an exception.");
} catch (Exception exception) {
FileTestHelpers.assertExceptionStatusCode(exception, 400);
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/ShareAsyncClientTests.java b/storage/client/file/src/test/java/com/azure/storage/file/ShareAsyncClientTests.java
index d98273108b491..619cfe1d0f3e2 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/ShareAsyncClientTests.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/ShareAsyncClientTests.java
@@ -39,7 +39,6 @@ public void beforeTest() {
if (interceptorManager.isPlaybackMode()) {
shareAsyncClient = setupClient((connectionString, endpoint) -> new ShareClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.shareName(shareName)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
@@ -47,7 +46,6 @@ public void beforeTest() {
} else {
shareAsyncClient = setupClient((connectionString, endpoint) -> new ShareClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.shareName(shareName)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
diff --git a/storage/client/file/src/test/java/com/azure/storage/file/ShareClientTests.java b/storage/client/file/src/test/java/com/azure/storage/file/ShareClientTests.java
index 059d704630654..0ce9c4353d411 100644
--- a/storage/client/file/src/test/java/com/azure/storage/file/ShareClientTests.java
+++ b/storage/client/file/src/test/java/com/azure/storage/file/ShareClientTests.java
@@ -42,7 +42,6 @@ public void beforeTest() {
if (interceptorManager.isPlaybackMode()) {
shareClient = setupClient((connectionString, endpoint) -> new ShareClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.shareName(shareName)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
@@ -50,7 +49,6 @@ public void beforeTest() {
} else {
shareClient = setupClient((connectionString, endpoint) -> new ShareClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.shareName(shareName)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
diff --git a/storage/client/file/src/test/resources/session-records/abortCopy.json b/storage/client/file/src/test/resources/session-records/abortCopy.json
index 44f4caf813585..c0b8975b1bc79 100644
--- a/storage/client/file/src/test/resources/session-records/abortCopy.json
+++ b/storage/client/file/src/test/resources/session-records/abortCopy.json
@@ -1,4 +1,4 @@
{
"networkCallRecords" : [ ],
- "variables" : [ "file10519411" ]
+ "variables" : [ "file9844467f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/clearMetadataFromDirClient.json b/storage/client/file/src/test/resources/session-records/clearMetadataFromDirClient.json
index d9f06f7e804cf..484e620dc75fe 100644
--- a/storage/client/file/src/test/resources/session-records/clearMetadataFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/clearMetadataFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory863334?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory149240?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB67B1F98\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D7122110AD4657\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ee1-001a-006b-3775-4192c4000000",
+ "x-ms-request-id" : "86be9445-101a-010f-2e09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory863334?restype=directory&comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory149240?restype=directory&comp=metadata",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,15 +28,15 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB6831042\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D7122110B29ED0\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781ee2-001a-006b-3875-4192c4000000",
+ "x-ms-request-id" : "86be9446-101a-010f-2f09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
} ],
- "variables" : [ "directory863334" ]
+ "variables" : [ "directory149240" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createDirectoryAlreadyExistsFromShareClient.json b/storage/client/file/src/test/resources/session-records/createDirectoryAlreadyExistsFromShareClient.json
index ed9ad15510e4c..f621ff72d738a 100644
--- a/storage/client/file/src/test/resources/session-records/createDirectoryAlreadyExistsFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/createDirectoryAlreadyExistsFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share22756b14?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25076a33?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C78DAADCB\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "ETag" : "\"0x8D71220940B72B4\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:42 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d48-001a-006b-4875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "x-ms-request-id" : "86be8536-101a-010f-4309-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share22756b14/testshare?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25076a33/testshare?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -27,18 +27,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C78E3B87F\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "ETag" : "\"0x8D7122094189A40\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:42 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d4a-001a-006b-4975-4192c4000000",
+ "x-ms-request-id" : "86be8538-101a-010f-4409-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share22756b14/testshare?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25076a33/testshare?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,14 +50,14 @@
"retry-after" : "0",
"Content-Length" : "228",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781d4b-001a-006b-4a75-4192c4000000",
- "Body" : "ResourceAlreadyExists
The specified resource already exists.\nRequestId:a4781d4b-001a-006b-4a75-4192c4000000\nTime:2019-07-23T16:40:29.4840714Z",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "x-ms-request-id" : "86be8539-101a-010f-4509-449bd5000000",
+ "Body" : "ResourceAlreadyExists
The specified resource already exists.\nRequestId:86be8539-101a-010f-4509-449bd5000000\nTime:2019-07-26T23:25:42.9627486Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share22756b14?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25076a33?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -68,9 +68,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d4c-001a-006b-4b75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "x-ms-request-id" : "86be853a-101a-010f-4609-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
} ],
- "variables" : [ "share22756b14" ]
+ "variables" : [ "share25076a33" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createDirectoryFromShareClient.json b/storage/client/file/src/test/resources/session-records/createDirectoryFromShareClient.json
index b1e911a9b4d14..b1b7d8d0d3ab1 100644
--- a/storage/client/file/src/test/resources/session-records/createDirectoryFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/createDirectoryFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share2125750f?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32711a13?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C950469F4\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "ETag" : "\"0x8D71220AFE579A7\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:29 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dc0-001a-006b-7a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT"
+ "x-ms-request-id" : "86be85b7-101a-010f-0709-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share2125750f/testshare?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32711a13/testshare?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -27,18 +27,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C950E2F68\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "ETag" : "\"0x8D71220AFEF79AB\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:29 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dc2-001a-006b-7b75-4192c4000000",
+ "x-ms-request-id" : "86be85b9-101a-010f-0809-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share2125750f?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32711a13?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781dc3-001a-006b-7c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85ba-101a-010f-0909-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
} ],
- "variables" : [ "share2125750f" ]
+ "variables" : [ "share32711a13" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createDirectoryInvalidNameFromShareClient.json b/storage/client/file/src/test/resources/session-records/createDirectoryInvalidNameFromShareClient.json
index c1b5e624d12bb..d9f5676ed76ce 100644
--- a/storage/client/file/src/test/resources/session-records/createDirectoryInvalidNameFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/createDirectoryInvalidNameFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share01242c86?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share498750ec?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C76E38AFB\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D7122092761860\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d01-001a-006b-1175-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT"
+ "x-ms-request-id" : "86be84ee-101a-010f-0e09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:39 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share01242c86/test%2fshare?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share498750ec/test%2fshare?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "224",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d03-001a-006b-1275-4192c4000000",
- "Body" : "ParentNotFound
The specified parent path does not exist.\nRequestId:a4781d03-001a-006b-1275-4192c4000000\nTime:2019-07-23T16:40:26.1306790Z",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT",
+ "x-ms-request-id" : "86be84f0-101a-010f-0f09-449bd5000000",
+ "Body" : "ParentNotFound
The specified parent path does not exist.\nRequestId:86be84f0-101a-010f-0f09-449bd5000000\nTime:2019-07-26T23:25:40.2111396Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:39 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share01242c86?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share498750ec?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d04-001a-006b-1375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT"
+ "x-ms-request-id" : "86be84f1-101a-010f-1009-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:39 GMT"
}
} ],
- "variables" : [ "share01242c86" ]
+ "variables" : [ "share498750ec" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createExcessMaxSizeFromFileClient.json b/storage/client/file/src/test/resources/session-records/createExcessMaxSizeFromFileClient.json
index 4bb5ab15e2e22..8830f03db9ed2 100644
--- a/storage/client/file/src/test/resources/session-records/createExcessMaxSizeFromFileClient.json
+++ b/storage/client/file/src/test/resources/session-records/createExcessMaxSizeFromFileClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile6519698b",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile08738256",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3EF47F55\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:52 GMT",
+ "ETag" : "\"0x8D712205A75B7CE\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:06 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c3b-001a-006b-4075-4192c4000000",
+ "x-ms-request-id" : "86be8408-101a-010f-2009-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "HEAD",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile6519698b",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile08738256",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,18 +28,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:52 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:06 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:06 GMT",
"x-ms-server-encrypted" : "true",
"x-ms-type" : "File",
- "ETag" : "\"0x8D70F8C3EF47F55\"",
+ "ETag" : "\"0x8D712205A75B7CE\"",
"Content-Length" : "0",
- "x-ms-request-id" : "a4781c3c-001a-006b-4175-4192c4000000",
+ "x-ms-request-id" : "86be8409-101a-010f-2109-449bd5000000",
"Body" : "",
"Content-Type" : "application/octet-stream"
}
} ],
- "variables" : [ "file6519698b" ]
+ "variables" : [ "file08738256" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createFileFromDirClient.json b/storage/client/file/src/test/resources/session-records/createFileFromDirClient.json
index 094a1138d065f..77d10c3ad2743 100644
--- a/storage/client/file/src/test/resources/session-records/createFileFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/createFileFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory863163?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory173243?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB576C6DE\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D712210FD5C5A9\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ec3-001a-006b-1975-4192c4000000",
+ "x-ms-request-id" : "86be9425-101a-010f-1009-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory863163%2ftestfile",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory173243%2ftestfile",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,15 +28,15 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB57F7AFF\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D712210FDBE1A8\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ec4-001a-006b-1a75-4192c4000000",
+ "x-ms-request-id" : "86be9426-101a-010f-1109-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
} ],
- "variables" : [ "directory863163" ]
+ "variables" : [ "directory173243" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createFileWithoutCreateDirFromDirClient.json b/storage/client/file/src/test/resources/session-records/createFileWithoutCreateDirFromDirClient.json
index 0505db3315249..bc6a934ef9cf6 100644
--- a/storage/client/file/src/test/resources/session-records/createFileWithoutCreateDirFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/createFileWithoutCreateDirFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory886246%2ftestfile",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory741375%2ftestfile",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,11 +13,11 @@
"retry-after" : "0",
"Content-Length" : "224",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781ee0-001a-006b-3675-4192c4000000",
- "Body" : "ParentNotFound
The specified parent path does not exist.\nRequestId:a4781ee0-001a-006b-3675-4192c4000000\nTime:2019-07-23T16:42:12.6968560Z",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "x-ms-request-id" : "86be9444-101a-010f-2d09-449bd5000000",
+ "Body" : "ParentNotFound
The specified parent path does not exist.\nRequestId:86be9444-101a-010f-2d09-449bd5000000\nTime:2019-07-26T23:29:11.8779188Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "directory886246" ]
+ "variables" : [ "directory741375" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createFromFileClient.json b/storage/client/file/src/test/resources/session-records/createFromFileClient.json
index 2ae2af729c6b0..edd772f36fbc1 100644
--- a/storage/client/file/src/test/resources/session-records/createFromFileClient.json
+++ b/storage/client/file/src/test/resources/session-records/createFromFileClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile91357575",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile6255100d",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3F05724F\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:52 GMT",
+ "ETag" : "\"0x8D712205A81C8A7\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:06 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c3d-001a-006b-4275-4192c4000000",
+ "x-ms-request-id" : "86be840a-101a-010f-2209-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:06 GMT"
}
}, {
"Method" : "HEAD",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile91357575",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile6255100d",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,18 +28,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:52 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:06 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:06 GMT",
"x-ms-server-encrypted" : "true",
"x-ms-type" : "File",
- "ETag" : "\"0x8D70F8C3F05724F\"",
+ "ETag" : "\"0x8D712205A81C8A7\"",
"Content-Length" : "1024",
- "x-ms-request-id" : "a4781c3e-001a-006b-4375-4192c4000000",
+ "x-ms-request-id" : "86be840b-101a-010f-2309-449bd5000000",
"Body" : "",
"Content-Type" : "application/octet-stream"
}
} ],
- "variables" : [ "file91357575" ]
+ "variables" : [ "file6255100d" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createFromShareClient.json b/storage/client/file/src/test/resources/session-records/createFromShareClient.json
index c802b0ddf43e0..ba85c9a227bb5 100644
--- a/storage/client/file/src/test/resources/session-records/createFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/createFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share923617a7?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share614035c3?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C956279A2\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "ETag" : "\"0x8D71220B022DFCA\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:29 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dcc-001a-006b-0375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85c3-101a-010f-1009-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share923617a7?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share614035c3?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -30,9 +30,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781dce-001a-006b-0475-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85c5-101a-010f-1109-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
} ],
- "variables" : [ "share923617a7" ]
+ "variables" : [ "share614035c3" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createInvalidQuotaFromShareClient.json b/storage/client/file/src/test/resources/session-records/createInvalidQuotaFromShareClient.json
index e6ca2bc82bca8..8fd1bf1f9c940 100644
--- a/storage/client/file/src/test/resources/session-records/createInvalidQuotaFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/createInvalidQuotaFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share58139809?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7059843f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "324",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781dac-001a-006b-6b75-4192c4000000",
- "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:a4781dac-001a-006b-6b75-4192c4000000\nTime:2019-07-23T16:41:15.7831129Zx-ms-share-quota-1",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85a4-101a-010f-7809-449bd5000000",
+ "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:86be85a4-101a-010f-7809-449bd5000000\nTime:2019-07-26T23:26:28.9754196Zx-ms-share-quota-1",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share58139809?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7059843f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,14 +32,14 @@
"retry-after" : "0",
"Content-Length" : "323",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781dae-001a-006b-6c75-4192c4000000",
- "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:a4781dae-001a-006b-6c75-4192c4000000\nTime:2019-07-23T16:41:15.8301458Zx-ms-share-quota0",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85a5-101a-010f-7909-449bd5000000",
+ "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:86be85a5-101a-010f-7909-449bd5000000\nTime:2019-07-26T23:26:29.0054480Zx-ms-share-quota0",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share58139809?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7059843f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -51,11 +51,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781daf-001a-006b-6d75-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781daf-001a-006b-6d75-4192c4000000\nTime:2019-07-23T16:41:15.8781809Z",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85a6-101a-010f-7a09-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be85a6-101a-010f-7a09-449bd5000000\nTime:2019-07-26T23:26:29.0354774Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share58139809" ]
+ "variables" : [ "share7059843f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createMinFromDirClient.json b/storage/client/file/src/test/resources/session-records/createMinFromDirClient.json
index 4a20dcab8864b..992d04c9fe08c 100644
--- a/storage/client/file/src/test/resources/session-records/createMinFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/createMinFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory59046b?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory036877?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,15 +9,15 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB55B98CF\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "ETag" : "\"0x8D712210FC3BFFC\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ec0-001a-006b-1675-4192c4000000",
+ "x-ms-request-id" : "86be9421-101a-010f-0d09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
} ],
- "variables" : [ "directory59046b" ]
+ "variables" : [ "directory036877" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createShare.json b/storage/client/file/src/test/resources/session-records/createShare.json
index 47eb2267cbd53..6c20b09839203 100644
--- a/storage/client/file/src/test/resources/session-records/createShare.json
+++ b/storage/client/file/src/test/resources/session-records/createShare.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share975192ac?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share68409915?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CED4EC679\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "ETag" : "\"0x8D712213D92512A\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:27 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f80-001a-006b-7075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT"
+ "x-ms-request-id" : "86be9853-101a-010f-610a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share975192ac&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -30,14 +30,1971 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f82-001a-006b-7175-4192c4000000",
- "Body" : "share975192acshare975192acTue, 23 Jul 2019 16:43:44 GMT\"0x8D70F8CED4EC679\"5120",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "x-ms-request-id" : "86be9855-101a-010f-620a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share68409915Fri, 26 Jul 2019 23:30:27 GMT\"0x8D712213D92512A\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share975192ac?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9856-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9856-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:27.3725713Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9857-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9857-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:27.4046010Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9858-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9858-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:27.4366315Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9859-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9859-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:27.4676618Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be985a-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be985a-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:27.5026950Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be985b-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be985b-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:27.5467366Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be985c-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be985c-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:27.5777664Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be985d-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be985d-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:27.6077951Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be985e-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be985e-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:27.6388254Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be985f-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be985f-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:27.6668517Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9861-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9861-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:27.7008837Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9862-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9862-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:27.7299126Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9863-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9863-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:27.7589396Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9864-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9864-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:27.7889681Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9865-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9865-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:27.8189980Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9866-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9866-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:27.8480248Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9867-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9867-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:27.8760518Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9868-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9868-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:27.9070810Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9869-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9869-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:27.9361073Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be986a-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be986a-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:27.9701401Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be986b-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be986b-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:28.0011688Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be986c-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be986c-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:28.0321989Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be986d-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be986d-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:28.0652295Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be986e-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be986e-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:28.0992617Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be986f-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be986f-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:28.1332940Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9870-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9870-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:28.1653253Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9871-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9871-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:28.1973552Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9872-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9872-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:28.2283857Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9873-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9873-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:28.2594140Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9874-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9874-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:28.2904427Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9875-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9875-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:28.3214728Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9876-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9876-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:28.3525024Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9877-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9877-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:28.3845328Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9878-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9878-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:28.4145626Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9879-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9879-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:28.4475918Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be987a-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be987a-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:28.4796222Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be987b-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be987b-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:28.5126537Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be987c-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be987c-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:28.5446841Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be987d-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be987d-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:28.5777152Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be987e-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be987e-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:28.6117479Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be987f-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be987f-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:28.6437782Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9880-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9880-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:28.6738062Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9882-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9882-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:28.7068373Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9883-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9883-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:28.7378679Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9884-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9884-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:28.7688975Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9885-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9885-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:28.7989250Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9886-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9886-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:28.8319566Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9887-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9887-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:28.8639869Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9888-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9888-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:28.8960177Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9889-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9889-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:28.9260471Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be988a-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be988a-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:28.9580761Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be988b-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be988b-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:28.9901064Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be988c-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be988c-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:29.0221368Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be988d-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be988d-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:29.0541667Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be988e-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be988e-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:29.0851963Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be988f-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be988f-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:29.1172267Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9890-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9890-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:29.1502582Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9891-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9891-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:29.1792869Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9892-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9892-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:29.2103147Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9893-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9893-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:29.2413443Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9894-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9894-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:29.2713732Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9895-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9895-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:29.3024024Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9896-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9896-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:29.3314297Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9897-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9897-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:29.3604579Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9898-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9898-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:29.3904859Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9899-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9899-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:29.4205139Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be989a-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be989a-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:29.4515440Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be989b-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be989b-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:29.4825727Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be989c-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be989c-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:29.5136028Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be989d-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be989d-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:29.5456331Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be989e-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be989e-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:29.5766632Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be989f-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be989f-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:29.6076910Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a0-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a0-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:29.6387207Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a1-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a1-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:29.6697503Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a2-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a2-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:29.7027814Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a3-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a3-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:29.7348136Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a4-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a4-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:29.7668421Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a5-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a5-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:29.7968715Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a6-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a6-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:29.8289009Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a7-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a7-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:29.8609326Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a8-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a8-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:29.8919609Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98a9-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98a9-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:29.9249924Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98aa-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98aa-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:29.9620273Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ab-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ab-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:29.9960600Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ac-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ac-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:30.0290915Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ad-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ad-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:30.0611214Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ae-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ae-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:30.0921501Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98af-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98af-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:30.1231798Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b0-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b0-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:30.1572120Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b1-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b1-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:30.1922459Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b2-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b2-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:30.2272784Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b3-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b3-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:30.2603100Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b4-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b4-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:30.2903398Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b5-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b5-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:30.3223688Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b6-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b6-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:30.3544001Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b7-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b7-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:30.3844276Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b8-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b8-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:30.4174582Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98b9-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98b9-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:30.4504911Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ba-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ba-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:30.4805187Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98bb-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98bb-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:30.5125490Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98bc-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98bc-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:30.5485836Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98bd-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98bd-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:30.5786121Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98be-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98be-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:30.6106415Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share68409915?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -48,9 +2005,864 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781f83-001a-006b-7275-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT"
+ "x-ms-request-id" : "86be98bf-101a-010f-4a0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c0-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c0-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:30.6757043Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c1-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c1-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:30.7107373Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c2-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c2-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:30.7427681Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c3-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c3-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:30.7747975Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c4-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c4-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:30.8058283Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c5-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c5-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:30.8378588Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c6-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c6-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:30.8688887Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c7-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c7-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:30.8999176Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c8-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c8-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:30.9309470Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98c9-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98c9-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:30.9619768Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ca-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ca-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:30.9930076Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98cb-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98cb-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:31.0250367Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98cc-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98cc-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:31.0560656Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98cd-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98cd-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:31.0880967Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ce-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ce-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:31.1191270Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98cf-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98cf-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:31.1491542Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98d0-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98d0-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:31.1811853Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98d2-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98d2-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:31.2122160Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98d3-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98d3-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:31.2432449Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98d4-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98d4-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:31.2762762Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98d5-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98d5-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:31.3083063Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98d6-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98d6-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:31.3393366Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98d7-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98d7-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:31.3713672Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98d8-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98d8-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:31.4023966Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98d9-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98d9-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:31.4334260Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98db-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98db-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:31.4634546Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98dc-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98dc-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:31.4934842Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98dd-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98dd-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:31.5245131Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98de-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98de-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:31.5565432Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98df-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98df-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:31.5875735Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e0-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e0-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:31.6206043Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e1-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e1-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:31.6526354Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e2-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e2-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:31.6826645Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e3-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e3-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:31.7116919Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e4-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e4-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:31.7427208Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e5-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e5-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:31.7737512Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e6-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e6-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:31.8067818Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e7-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e7-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:31.8378115Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e8-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e8-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:31.8738470Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98e9-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98e9-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:31.9058774Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ea-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ea-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:31.9369056Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98eb-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98eb-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:31.9669336Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ec-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ec-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:31.9969625Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ed-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ed-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:32.0289929Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ee-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ee-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:32.0600220Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share975192ac" ]
+ "variables" : [ "share68409915" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createShareInvalidQuota.json b/storage/client/file/src/test/resources/session-records/createShareInvalidQuota.json
index 40109d33b40f6..ad56590039c91 100644
--- a/storage/client/file/src/test/resources/session-records/createShareInvalidQuota.json
+++ b/storage/client/file/src/test/resources/session-records/createShareInvalidQuota.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share783156eb?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486110dc?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "324",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781f7b-001a-006b-6b75-4192c4000000",
- "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:a4781f7b-001a-006b-6b75-4192c4000000\nTime:2019-07-23T16:43:44.4843579Zx-ms-share-quota-1",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "x-ms-request-id" : "86be971c-101a-010f-310a-449bd5000000",
+ "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:86be971c-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:17.3780861Zx-ms-share-quota-1",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share783156eb?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486110dc?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,14 +32,14 @@
"retry-after" : "0",
"Content-Length" : "329",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781f7c-001a-006b-6c75-4192c4000000",
- "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:a4781f7c-001a-006b-6c75-4192c4000000\nTime:2019-07-23T16:43:44.5303917Zx-ms-share-quota9999999",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "x-ms-request-id" : "86be971d-101a-010f-320a-449bd5000000",
+ "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:86be971d-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:17.4041114Zx-ms-share-quota9999999",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share783156eb&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,11 +50,2823 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f7d-001a-006b-6d75-4192c4000000",
- "Body" : "share783156eb",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "x-ms-request-id" : "86be971e-101a-010f-330a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be971f-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be971f-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:17.5862857Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9720-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9720-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:17.6173150Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9721-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9721-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:17.6483440Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9723-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9723-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:17.6793743Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9724-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9724-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:17.7194120Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9725-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9725-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:17.7494402Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9726-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9726-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:17.7804700Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9727-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9727-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:17.8124998Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9728-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9728-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:17.8435304Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9729-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9729-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:17.8745591Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be972a-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be972a-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:17.9055892Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be972b-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be972b-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:17.9386198Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be972c-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be972c-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:17.9716509Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be972d-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be972d-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:18.0046824Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be972e-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be972e-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:18.0367142Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be972f-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be972f-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:18.0687431Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9730-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9730-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:18.0987725Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9731-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9731-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:18.1378084Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9732-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9732-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:18.1708399Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9733-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9733-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:18.2028721Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9734-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9734-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:18.2359023Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9735-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9735-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:18.2679340Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9736-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9736-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:18.2999630Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9737-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9737-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:18.3309917Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9738-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9738-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:18.3640232Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9739-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9739-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:18.3960540Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be973a-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be973a-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:18.4290860Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be973b-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be973b-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:18.4621166Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be973c-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be973c-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:18.4941465Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be973d-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be973d-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:18.5241764Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be973e-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be973e-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:18.5562058Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be973f-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be973f-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:18.5882357Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9740-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9740-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:18.6222684Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9741-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9741-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:18.6542992Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9743-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9743-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:18.6873294Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9744-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9744-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:18.7183590Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9745-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9745-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:18.7493882Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9746-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9746-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:18.7784164Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9747-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9747-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:18.8084444Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9748-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9748-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:18.8384728Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9749-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9749-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:18.8705027Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be974a-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be974a-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:18.9015324Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be974b-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be974b-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:18.9325620Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be974c-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be974c-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:18.9635907Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be974d-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be974d-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:18.9956220Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be974e-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be974e-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:19.0256500Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be974f-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be974f-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:19.0566801Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9750-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9750-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:19.0907114Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9751-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9751-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:19.1227422Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9752-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9752-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:19.1557738Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9753-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9753-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:19.1858027Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9754-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9754-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:19.2178321Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9755-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9755-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:19.2488613Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9756-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9756-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:19.2818933Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9757-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9757-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:19.3139251Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9758-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9758-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:19.3479554Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9759-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9759-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:19.3799858Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be975a-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be975a-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:19.4100138Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be975b-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be975b-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:19.4420446Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be975c-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be975c-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:19.4740750Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be975d-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be975d-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:19.5121119Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be975e-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be975e-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:19.5431406Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be975f-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be975f-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:19.5751705Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9760-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9760-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:19.6061997Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9761-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9761-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:19.6402324Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9762-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9762-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:19.6702623Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9763-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9763-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:19.7042941Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9764-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9764-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:19.7363240Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9765-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9765-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:19.7683552Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9766-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9766-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:19.7983818Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9767-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9767-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:19.8314134Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9768-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9768-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:19.8614418Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9769-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9769-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:19.8914708Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be976a-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be976a-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:19.9224995Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be976b-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be976b-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:19.9565331Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be976c-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be976c-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:19.9895637Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be976d-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be976d-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:20.0205934Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be976e-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be976e-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:20.0526242Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be976f-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be976f-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:20.0886574Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9770-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9770-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:20.1206882Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9771-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9771-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:20.1527186Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9772-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9772-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:20.1837473Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9773-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9773-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:20.2167788Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9774-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9774-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:20.2508111Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9775-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9775-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:20.2848433Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9776-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9776-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:20.3158739Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9777-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9777-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:20.3489054Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9778-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9778-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:20.3819360Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9779-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9779-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:20.4139659Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be977a-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be977a-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:20.4479986Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be977b-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be977b-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:20.4780262Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be977c-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be977c-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:20.5100579Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be977d-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be977d-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:20.5400864Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be977e-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be977e-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:20.5721163Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be977f-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be977f-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:20.6041471Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9780-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9780-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:20.6341741Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9781-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9781-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:20.6662050Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9782-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9782-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:20.6982372Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9783-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9783-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:20.7302652Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9784-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9784-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:20.7612953Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9785-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9785-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:20.7933247Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9786-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9786-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:20.8293607Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9787-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9787-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:20.8593878Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9788-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9788-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:20.8904184Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9789-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9789-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:20.9214471Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be978a-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be978a-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:20.9504748Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be978b-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be978b-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:20.9815031Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be978c-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be978c-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:21.0135344Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be978d-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be978d-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:21.0445635Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be978e-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be978e-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:21.0755927Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be978f-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be978f-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:21.1076235Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9790-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9790-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:21.1486626Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9791-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9791-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:21.1806925Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9793-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9793-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:21.2117217Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9794-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9794-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:21.2447537Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9795-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9795-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:21.2757820Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9796-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9796-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:21.3068116Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9797-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9797-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:21.3368405Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9798-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9798-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:21.3698716Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9799-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9799-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:21.4019019Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be979a-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be979a-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:21.4329311Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be979b-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be979b-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:21.4649615Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be979c-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be979c-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:21.4969918Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be979d-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be979d-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:21.5340276Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be979e-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be979e-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:21.5650568Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be979f-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be979f-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:21.5940850Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a0-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a0-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:21.6241121Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a1-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a1-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:21.6541410Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a2-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a2-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:21.6901747Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a3-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a3-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:21.7212043Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a4-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a4-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:21.7532351Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a5-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a5-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:21.8132923Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a6-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a6-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:21.8433210Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a7-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a7-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:21.8723498Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a8-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a8-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:21.9023771Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97a9-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97a9-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:21.9304033Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97aa-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97aa-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:21.9604329Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ab-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ab-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:21.9894609Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ac-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ac-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:22.0184879Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ad-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ad-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:22.0475177Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ae-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ae-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:22.0775444Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97af-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97af-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:22.1075726Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97b0-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97b0-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:22.1396037Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97b1-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97b1-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:22.1706335Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97b2-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97b2-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:22.2006617Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97b3-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97b3-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:22.2296892Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97b4-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97b4-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:22.2587171Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97b5-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97b5-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:22.2887457Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share783156eb" ]
+ "variables" : [ "share486110dc" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createShareTwiceDifferentMetadata.json b/storage/client/file/src/test/resources/session-records/createShareTwiceDifferentMetadata.json
index d00c5e4cd4fbe..85909c0d9e2dc 100644
--- a/storage/client/file/src/test/resources/session-records/createShareTwiceDifferentMetadata.json
+++ b/storage/client/file/src/test/resources/session-records/createShareTwiceDifferentMetadata.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share09717677?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share377421d6?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CECAA2B0C\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "ETag" : "\"0x8D712212E9CB18E\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:02 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f67-001a-006b-5c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:42 GMT"
+ "x-ms-request-id" : "86be952b-101a-010f-610a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share09717677?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share377421d6?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "222",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781f69-001a-006b-5d75-4192c4000000",
- "Body" : "ShareAlreadyExists
The specified share already exists.\nRequestId:a4781f69-001a-006b-5d75-4192c4000000\nTime:2019-07-23T16:43:43.7168101Z",
- "Date" : "Tue, 23 Jul 2019 16:43:42 GMT",
+ "x-ms-request-id" : "86be952d-101a-010f-620a-449bd5000000",
+ "Body" : "ShareAlreadyExists
The specified share already exists.\nRequestId:86be952d-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:02.1846651Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share09717677&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,14 +49,1021 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f6a-001a-006b-5e75-4192c4000000",
- "Body" : "share09717677share09717677Tue, 23 Jul 2019 16:43:43 GMT\"0x8D70F8CECAA2B0C\"5120",
- "Date" : "Tue, 23 Jul 2019 16:43:42 GMT",
+ "x-ms-request-id" : "86be952e-101a-010f-630a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share377421d6Fri, 26 Jul 2019 23:30:02 GMT\"0x8D712212E9CB18E\"5120share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share09717677?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be952f-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be952f-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:02.3077811Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9530-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9530-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:02.3368088Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9531-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9531-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:02.3688387Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9532-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9532-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:02.4028705Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9533-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9533-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:02.4369028Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9534-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9534-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:02.4719357Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9535-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9535-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:02.5039666Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9536-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9536-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:02.5490104Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9537-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9537-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:02.5800382Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9538-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9538-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:02.6100676Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9539-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9539-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:02.6390944Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be953a-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be953a-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:02.6701240Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be953c-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be953c-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:02.7021553Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be953d-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be953d-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:02.7331840Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be953e-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be953e-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:02.7642142Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be953f-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be953f-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:02.7952431Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9540-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9540-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:02.8262725Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9541-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9541-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:02.8613071Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9542-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9542-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:02.8933367Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9543-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9543-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:02.9243661Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9544-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9544-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:02.9553964Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9545-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9545-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:02.9874269Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9546-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9546-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:03.0214589Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9547-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9547-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:03.0544902Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9548-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9548-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:03.0865213Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9549-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9549-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:03.1195521Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be954a-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be954a-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:03.1505824Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be954b-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be954b-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:03.1816122Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be954c-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be954c-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:03.2136419Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be954d-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be954d-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:03.2446717Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be954e-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be954e-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:03.2747008Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be954f-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be954f-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:03.3067304Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9550-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9550-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:03.3367600Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9551-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9551-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:03.3667887Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9552-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9552-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:03.4008207Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9553-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9553-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:03.4328517Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9554-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9554-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:03.4628818Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9555-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9555-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:03.5019174Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9556-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9556-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:03.5329472Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9557-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9557-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:03.5649783Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9558-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9558-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:03.5950064Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9559-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9559-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:03.6270365Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be955a-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be955a-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:03.6580659Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be955c-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be955c-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:03.6910981Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be955d-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be955d-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:03.7221270Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be955e-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be955e-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:03.7531578Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be955f-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be955f-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:03.7871901Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9560-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9560-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:03.8182188Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9561-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9561-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:03.8502492Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9562-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9562-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:03.8812783Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9563-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9563-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:03.9113073Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9564-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9564-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:03.9433371Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9565-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9565-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:03.9743668Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share377421d6?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -67,9 +1074,1814 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781f6b-001a-006b-5f75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:42 GMT"
+ "x-ms-request-id" : "86be9566-101a-010f-190a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9567-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9567-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:04.0434320Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9568-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9568-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:04.0794666Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9569-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9569-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:04.1114965Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be956a-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be956a-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:04.1425261Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be956b-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be956b-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:04.1745560Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be956c-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be956c-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:04.2085892Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be956d-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be956d-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:04.2426210Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be956e-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be956e-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:04.2756525Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be956f-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be956f-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:04.3066817Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9570-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9570-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:04.3377113Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9571-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9571-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:04.3677393Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9572-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9572-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:04.3997697Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9573-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9573-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:04.4318001Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9574-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9574-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:04.4678351Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9575-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9575-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:04.4998650Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9576-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9576-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:04.5318963Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9577-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9577-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:04.5699319Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9578-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9578-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:04.6029625Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9579-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9579-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:04.6359945Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be957a-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be957a-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:04.6690251Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be957b-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be957b-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:04.7000543Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be957c-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be957c-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:04.7330858Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be957d-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be957d-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:04.7671176Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be957e-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be957e-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:04.8001487Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be957f-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be957f-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:04.8331807Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9580-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9580-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:04.8702160Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9581-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9581-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:04.9252675Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9582-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9582-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:04.9552964Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9583-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9583-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:04.9843241Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9584-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9584-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:05.0133509Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9585-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9585-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:05.0423782Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9586-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9586-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:05.0734083Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9587-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9587-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:05.1034372Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9588-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9588-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:05.1354676Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9589-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9589-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:05.1664968Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be958a-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be958a-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:05.1985271Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be958b-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be958b-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:05.2305570Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be958c-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be958c-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:05.2605859Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be958d-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be958d-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:05.2916151Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be958e-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be958e-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:05.3236450Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be958f-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be958f-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:05.3556763Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9590-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9590-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:05.3877057Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9591-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9591-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:05.4187363Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9592-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9592-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:05.4517678Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9593-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9593-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:05.4837982Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9594-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9594-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:05.5128250Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9595-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9595-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:05.5438551Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9596-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9596-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:05.5748829Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9597-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9597-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:05.6059134Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9598-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9598-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:05.6379438Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9599-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9599-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:05.6779813Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be959a-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be959a-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:05.7100112Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be959b-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be959b-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:05.7410445Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be959c-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be959c-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:05.7730707Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be959d-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be959d-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:05.8041003Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be959e-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be959e-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:05.8351304Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be959f-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be959f-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:05.8661591Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95a0-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95a0-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:05.8971888Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95a1-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95a1-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:05.9282189Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95a2-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95a2-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:05.9602497Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95a3-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95a3-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:05.9902772Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95a4-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95a4-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:06.0233092Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95a5-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95a5-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:06.0553391Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95a6-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95a6-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:06.0963778Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95a7-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95a7-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:06.1284091Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95a8-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95a8-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:06.1594373Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95aa-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95aa-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:06.1894658Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95ab-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95ab-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:06.2224968Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95ac-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95ac-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:06.2555284Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95ad-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95ad-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:06.2855568Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95ae-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95ae-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:06.3165869Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95af-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95af-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:06.3486164Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b0-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b0-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:06.3796460Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b1-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b1-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:06.4106756Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b2-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b2-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:06.4417048Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b3-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b3-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:06.4727344Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b4-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b4-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:06.5047653Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b5-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b5-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:06.5367947Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b6-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b6-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:06.5678239Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b7-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b7-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:06.6008554Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b8-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b8-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:06.6298836Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95b9-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95b9-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:06.6609128Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95ba-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95ba-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:06.6929431Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95bb-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95bb-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:06.7239737Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95bc-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95bc-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:06.7580060Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95bd-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95bd-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:06.7920373Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95be-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95be-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:06.8240672Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95bf-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95bf-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:06.8560975Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95c0-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95c0-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:06.8901293Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95c3-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95c3-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:06.9231613Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95c4-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95c4-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:06.9541900Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95c5-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95c5-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:06.9882227Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95c6-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95c6-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:07.0202526Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95c7-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95c7-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:07.0532842Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95c8-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95c8-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:07.0873164Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share09717677" ]
+ "variables" : [ "share377421d6" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createShareTwiceSameMetadata.json b/storage/client/file/src/test/resources/session-records/createShareTwiceSameMetadata.json
index d3959d887cd48..8190dbeb7ab42 100644
--- a/storage/client/file/src/test/resources/session-records/createShareTwiceSameMetadata.json
+++ b/storage/client/file/src/test/resources/session-records/createShareTwiceSameMetadata.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share56293760?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share570706fb?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CD18A473F\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:58 GMT",
+ "ETag" : "\"0x8D712212BA50019\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:57 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f17-001a-006b-4775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:42:57 GMT"
+ "x-ms-request-id" : "86be9489-101a-010f-470a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share56293760?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share570706fb?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "222",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781f1a-001a-006b-4875-4192c4000000",
- "Body" : "ShareAlreadyExists
The specified share already exists.\nRequestId:a4781f1a-001a-006b-4875-4192c4000000\nTime:2019-07-23T16:42:58.2083345Z",
- "Date" : "Tue, 23 Jul 2019 16:42:57 GMT",
+ "x-ms-request-id" : "86be948c-101a-010f-480a-449bd5000000",
+ "Body" : "ShareAlreadyExists
The specified share already exists.\nRequestId:86be948c-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:29:57.1989335Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share56293760&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,14 +49,1591 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f1b-001a-006b-4975-4192c4000000",
- "Body" : "share56293760share56293760Tue, 23 Jul 2019 16:42:58 GMT\"0x8D70F8CD18A473F\"5120",
- "Date" : "Tue, 23 Jul 2019 16:42:57 GMT",
+ "x-ms-request-id" : "86be948d-101a-010f-490a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share570706fbFri, 26 Jul 2019 23:29:57 GMT\"0x8D712212BA50019\"5120share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share56293760?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be948e-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be948e-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:29:57.3821077Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be948f-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be948f-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:29:57.4151379Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9490-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9490-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:29:57.4481690Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9491-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9491-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:29:57.4882074Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9492-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9492-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:29:57.5202382Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9493-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9493-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:29:57.5522681Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9494-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9494-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:29:57.5842984Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9495-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9495-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:29:57.6153285Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9496-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9496-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:29:57.6463582Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9497-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9497-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:29:57.6773878Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9499-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9499-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:29:57.7074149Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be949a-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be949a-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:29:57.7364421Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be949b-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be949b-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:29:57.7664701Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be949c-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be949c-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:29:57.7985014Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be949d-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be949d-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:29:57.8295301Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be949e-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be949e-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:29:57.8615614Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be949f-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be949f-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:29:57.8905878Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94a2-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94a2-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:29:57.9216193Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94a3-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94a3-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:29:57.9526466Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94a4-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94a4-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:29:57.9836762Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94a5-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94a5-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:29:58.0157066Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94a6-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94a6-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:29:58.0467362Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94a7-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94a7-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:29:58.0787666Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94a8-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94a8-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:29:58.1138000Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94a9-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94a9-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:29:58.1468311Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94aa-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94aa-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:29:58.1758583Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ab-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ab-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:29:58.2038844Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ac-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ac-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:29:58.2359167Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ad-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ad-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:29:58.2709487Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ae-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ae-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:29:58.3019783Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94af-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94af-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:29:58.3360101Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b0-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b0-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:29:58.3690412Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b1-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b1-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:29:58.4000713Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b2-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b2-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:29:58.4321012Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b3-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b3-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:29:58.4631304Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b4-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b4-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:29:58.4941595Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b5-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b5-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:29:58.5271911Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b6-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b6-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:29:58.5612233Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b7-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b7-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:29:58.5932541Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b8-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b8-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:29:58.6242833Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94b9-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94b9-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:29:58.6523113Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94bb-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94bb-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:29:58.6823383Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94bc-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94bc-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:29:58.7113661Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94bd-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94bd-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:29:58.7433960Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94be-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94be-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:29:58.7744257Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94bf-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94bf-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:29:58.8054551Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c0-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c0-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:29:58.8374862Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c1-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c1-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:29:58.8685155Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c2-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c2-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:29:58.8995449Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c3-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c3-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:29:58.9305757Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c4-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c4-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:29:58.9626072Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c5-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c5-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:29:58.9926354Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c6-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c6-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:29:59.0236638Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c7-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c7-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:29:59.0566951Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c8-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c8-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:29:59.0877245Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94c9-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94c9-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:29:59.1187543Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ca-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ca-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:29:59.1497841Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94cb-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94cb-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:29:59.1818156Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94cc-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94cc-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:29:59.2148460Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94cd-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94cd-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:29:59.2468780Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ce-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ce-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:29:59.2759050Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94cf-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94cf-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:29:59.3059341Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d0-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d0-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:29:59.3349611Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d1-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d1-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:29:59.3639890Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d2-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d2-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:29:59.3940177Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d3-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d3-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:29:59.4260478Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d4-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d4-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:29:59.4570776Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d5-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d5-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:29:59.4891072Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d6-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d6-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:29:59.5201380Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d7-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d7-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:29:59.5511674Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d8-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d8-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:29:59.5862001Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94d9-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94d9-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:29:59.6192319Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94da-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94da-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:29:59.6502622Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94db-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94db-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:29:59.6822923Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94dc-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94dc-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:29:59.7133221Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94dd-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94dd-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:29:59.7453517Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94de-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94de-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:29:59.7773826Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94df-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94df-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:29:59.8094130Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94e0-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94e0-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:29:59.8414433Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94e1-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94e1-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:29:59.8724730Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94e2-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94e2-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:29:59.9015007Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94e3-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94e3-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:29:59.9345313Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94e4-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94e4-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:29:59.9655605Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share570706fb?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -67,9 +1644,1244 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781f1c-001a-006b-4a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:42:57 GMT"
+ "x-ms-request-id" : "86be94e5-101a-010f-1f0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94e8-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94e8-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:00.1347210Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94e9-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94e9-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:00.1777620Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ea-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ea-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:00.2077905Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94eb-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94eb-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:00.2358175Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ec-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ec-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:00.2648448Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ed-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ed-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:00.2948737Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ee-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ee-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:00.3239005Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ef-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ef-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:00.3539290Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f0-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f0-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:00.3819569Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f1-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f1-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:00.4119849Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f2-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f2-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:00.4410122Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f3-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f3-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:00.4720414Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f4-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f4-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:00.5040713Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f5-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f5-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:00.5340997Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f6-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f6-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:00.5621268Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f7-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f7-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:00.5921562Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f8-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f8-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:00.6211834Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94f9-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94f9-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:00.6502112Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94fa-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94fa-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:00.6782373Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94fb-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94fb-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:00.7062634Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94fc-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94fc-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:00.7362914Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94fd-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94fd-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:00.7643184Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94fe-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94fe-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:00.7943464Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be94ff-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be94ff-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:00.8243753Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9500-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9500-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:00.8524014Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9501-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9501-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:00.8814296Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9502-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9502-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:00.9104569Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9503-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9503-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:00.9384834Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9504-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9504-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:00.9695135Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9506-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9506-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:00.9995411Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9507-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9507-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:01.0285693Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9508-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9508-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:01.0575965Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9509-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9509-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:01.0876245Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be950a-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be950a-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:01.1166518Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be950b-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be950b-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:01.1556900Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be950d-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be950d-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:01.1847163Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be950e-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be950e-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:01.2137445Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be950f-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be950f-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:01.2437725Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9510-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9510-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:01.2727998Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9511-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9511-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:01.3018271Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9512-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9512-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:01.3308553Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9513-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9513-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:01.3598821Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9514-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9514-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:01.3889108Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9515-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9515-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:01.4189383Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9516-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9516-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:01.4469667Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9517-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9517-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:01.4759926Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9518-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9518-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:01.5050208Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9519-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9519-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:01.5350483Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be951a-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be951a-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:01.5630753Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be951b-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be951b-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:01.5921026Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be951c-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be951c-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:01.6231332Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be951d-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be951d-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:01.6511593Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be951e-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be951e-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:01.6801861Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be951f-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be951f-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:01.7102146Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9520-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9520-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:01.7422444Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9521-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9521-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:01.7722738Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9522-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9522-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:01.8043033Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9523-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9523-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:01.8363336Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9524-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9524-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:01.8673633Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9525-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9525-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:01.8983929Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9526-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9526-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:01.9294221Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9527-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9527-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:01.9594510Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9528-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9528-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:01.9914809Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9529-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9529-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:02.0255131Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be952a-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be952a-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:02.0595458Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:01 GMT",
+ "Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share56293760" ]
+ "variables" : [ "share570706fb" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createSubDirectory.json b/storage/client/file/src/test/resources/session-records/createSubDirectory.json
index 59d64ac3fbdc8..298a3017774f7 100644
--- a/storage/client/file/src/test/resources/session-records/createSubDirectory.json
+++ b/storage/client/file/src/test/resources/session-records/createSubDirectory.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory343921?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory009241?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5222EF0\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "ETag" : "\"0x8D712210F9E7BD6\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781eb8-001a-006b-1075-4192c4000000",
+ "x-ms-request-id" : "86be941b-101a-010f-0709-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:09 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory343921%2fdir0928634ae?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory009241%2fdir77717c0f4?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,15 +28,15 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB529F881\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "ETag" : "\"0x8D712210FA5D09F\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781eb9-001a-006b-1175-4192c4000000",
+ "x-ms-request-id" : "86be941c-101a-010f-0809-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:09 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
} ],
- "variables" : [ "directory343921", "dir0928634ae" ]
+ "variables" : [ "directory009241", "dir77717c0f4" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createSubDirectoryTwiceSameMetadata.json b/storage/client/file/src/test/resources/session-records/createSubDirectoryTwiceSameMetadata.json
index a64488dace84c..cba1b3db5f64b 100644
--- a/storage/client/file/src/test/resources/session-records/createSubDirectoryTwiceSameMetadata.json
+++ b/storage/client/file/src/test/resources/session-records/createSubDirectoryTwiceSameMetadata.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory539316?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory094326?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB658EB53\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D712211094AF65\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781edd-001a-006b-3375-4192c4000000",
+ "x-ms-request-id" : "86be9441-101a-010f-2a09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory539316%2fdir505430058?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory094326%2fdir77025c83c?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,18 +28,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB6608DDA\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D712211099E0C7\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ede-001a-006b-3475-4192c4000000",
+ "x-ms-request-id" : "86be9442-101a-010f-2b09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory539316%2fdir505430058?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory094326%2fdir77025c83c?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -51,11 +51,11 @@
"retry-after" : "0",
"Content-Length" : "228",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781edf-001a-006b-3575-4192c4000000",
- "Body" : "ResourceAlreadyExists
The specified resource already exists.\nRequestId:a4781edf-001a-006b-3575-4192c4000000\nTime:2019-07-23T16:42:12.6388146Z",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "x-ms-request-id" : "86be9443-101a-010f-2c09-449bd5000000",
+ "Body" : "ResourceAlreadyExists
The specified resource already exists.\nRequestId:86be9443-101a-010f-2c09-449bd5000000\nTime:2019-07-26T23:29:11.8398821Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "directory539316", "dir505430058" ]
+ "variables" : [ "directory094326", "dir77025c83c" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createSubDirectoryWithMetadata.json b/storage/client/file/src/test/resources/session-records/createSubDirectoryWithMetadata.json
index f9f82666b5f61..ac25dda98d355 100644
--- a/storage/client/file/src/test/resources/session-records/createSubDirectoryWithMetadata.json
+++ b/storage/client/file/src/test/resources/session-records/createSubDirectoryWithMetadata.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory669858?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory37051b?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB6469886\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D712211088777A\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781edb-001a-006b-3175-4192c4000000",
+ "x-ms-request-id" : "86be943f-101a-010f-2809-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory669858%2fdir2413813c3?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory37051b%2fdir1451362e6?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,15 +28,15 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB64F73C5\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D71221108DA8D8\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781edc-001a-006b-3275-4192c4000000",
+ "x-ms-request-id" : "86be9440-101a-010f-2909-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
} ],
- "variables" : [ "directory669858", "dir2413813c3" ]
+ "variables" : [ "directory37051b", "dir1451362e6" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createTwiceDifferentMetadataFromShareClient.json b/storage/client/file/src/test/resources/session-records/createTwiceDifferentMetadataFromShareClient.json
index 8aca8fa7be88d..85499267e1abb 100644
--- a/storage/client/file/src/test/resources/session-records/createTwiceDifferentMetadataFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/createTwiceDifferentMetadataFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share09921d47?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3658931d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C9625C67A\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:18 GMT",
+ "ETag" : "\"0x8D71220B0BE826B\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781de7-001a-006b-1775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85eb-101a-010f-2f09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share09921d47?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3658931d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "222",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781de9-001a-006b-1875-4192c4000000",
- "Body" : "ShareAlreadyExists
The specified share already exists.\nRequestId:a4781de9-001a-006b-1875-4192c4000000\nTime:2019-07-23T16:41:18.5641031Z",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "x-ms-request-id" : "86be85ed-101a-010f-3009-449bd5000000",
+ "Body" : "ShareAlreadyExists
The specified share already exists.\nRequestId:86be85ed-101a-010f-3009-449bd5000000\nTime:2019-07-26T23:26:31.0103553Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share09921d47?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3658931d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781dea-001a-006b-1975-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85ee-101a-010f-3109-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
} ],
- "variables" : [ "share09921d47" ]
+ "variables" : [ "share3658931d" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createTwiceFromDirClient.json b/storage/client/file/src/test/resources/session-records/createTwiceFromDirClient.json
index e69c7f627159e..4f8b38c6c5543 100644
--- a/storage/client/file/src/test/resources/session-records/createTwiceFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/createTwiceFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory874061?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory84160a?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5C6F129\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D7122110215FAA\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ecc-001a-006b-2275-4192c4000000",
+ "x-ms-request-id" : "86be942e-101a-010f-1909-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory874061?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory84160a?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "228",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781ecd-001a-006b-2375-4192c4000000",
- "Body" : "ResourceAlreadyExists
The specified resource already exists.\nRequestId:a4781ecd-001a-006b-2375-4192c4000000\nTime:2019-07-23T16:42:11.6300936Z",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "x-ms-request-id" : "86be942f-101a-010f-1a09-449bd5000000",
+ "Body" : "ResourceAlreadyExists
The specified resource already exists.\nRequestId:86be942f-101a-010f-1a09-449bd5000000\nTime:2019-07-26T23:29:11.0561387Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "directory874061" ]
+ "variables" : [ "directory84160a" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createTwiceSameMetadataFromShareClient.json b/storage/client/file/src/test/resources/session-records/createTwiceSameMetadataFromShareClient.json
index eeb6b80df7382..e356e8522c506 100644
--- a/storage/client/file/src/test/resources/session-records/createTwiceSameMetadataFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/createTwiceSameMetadataFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share097329d5?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83302f89?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C7955C0AA\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:30 GMT",
+ "ETag" : "\"0x8D71220947571C1\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d59-001a-006b-5575-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be8548-101a-010f-5009-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share097329d5?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83302f89?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "222",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781d5b-001a-006b-5675-4192c4000000",
- "Body" : "ShareAlreadyExists
The specified share already exists.\nRequestId:a4781d5b-001a-006b-5675-4192c4000000\nTime:2019-07-23T16:40:30.2245998Z",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "x-ms-request-id" : "86be854a-101a-010f-5109-449bd5000000",
+ "Body" : "ShareAlreadyExists
The specified share already exists.\nRequestId:86be854a-101a-010f-5109-449bd5000000\nTime:2019-07-26T23:25:43.5523085Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share097329d5?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83302f89?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d5c-001a-006b-5775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be854b-101a-010f-5209-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT"
}
} ],
- "variables" : [ "share097329d5" ]
+ "variables" : [ "share83302f89" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/createWithMetadataFromDirClient.json b/storage/client/file/src/test/resources/session-records/createWithMetadataFromDirClient.json
index 7105baad63f9e..716426db3ec68 100644
--- a/storage/client/file/src/test/resources/session-records/createWithMetadataFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/createWithMetadataFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory435036?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory299997?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,15 +9,15 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB50A5CCE\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "ETag" : "\"0x8D712210F817711\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:09 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781eb6-001a-006b-0e75-4192c4000000",
+ "x-ms-request-id" : "86be9419-101a-010f-0509-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:09 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
} ],
- "variables" : [ "directory435036" ]
+ "variables" : [ "directory299997" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteDirectoryDoesNotExistFromShareClient.json b/storage/client/file/src/test/resources/session-records/deleteDirectoryDoesNotExistFromShareClient.json
index f75e1d0d2d188..daba208db6508 100644
--- a/storage/client/file/src/test/resources/session-records/deleteDirectoryDoesNotExistFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteDirectoryDoesNotExistFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share439185d7?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share86186301?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C78A0A76D\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "ETag" : "\"0x8D7122093D9A836\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:42 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d3f-001a-006b-4175-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "x-ms-request-id" : "86be852d-101a-010f-3c09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share439185d7/testshare?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share86186301/testshare?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "223",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d41-001a-006b-4275-4192c4000000",
- "Body" : "ResourceNotFound
The specified resource does not exist.\nRequestId:a4781d41-001a-006b-4275-4192c4000000\nTime:2019-07-23T16:40:29.0387539Z",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "x-ms-request-id" : "86be852f-101a-010f-3d09-449bd5000000",
+ "Body" : "ResourceNotFound
The specified resource does not exist.\nRequestId:86be852f-101a-010f-3d09-449bd5000000\nTime:2019-07-26T23:25:42.5433518Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share439185d7?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share86186301?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d42-001a-006b-4375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "x-ms-request-id" : "86be8530-101a-010f-3e09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
} ],
- "variables" : [ "share439185d7" ]
+ "variables" : [ "share86186301" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteDirectoryFromShareClient.json b/storage/client/file/src/test/resources/session-records/deleteDirectoryFromShareClient.json
index dfc32b3d44f4b..8fec1e137bdbe 100644
--- a/storage/client/file/src/test/resources/session-records/deleteDirectoryFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteDirectoryFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share89717092?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share01555f5c?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C77583406\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D7122092C58433\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d12-001a-006b-1e75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT"
+ "x-ms-request-id" : "86be8500-101a-010f-1b09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share89717092/testshare?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share01555f5c/testshare?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -27,18 +27,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C77605492\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D7122092DC9A73\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d14-001a-006b-1f75-4192c4000000",
+ "x-ms-request-id" : "86be8504-101a-010f-1c09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share89717092/testshare?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share01555f5c/testshare?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,12 +49,12 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d15-001a-006b-2075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT"
+ "x-ms-request-id" : "86be8505-101a-010f-1d09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share89717092?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share01555f5c?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -65,9 +65,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d16-001a-006b-2175-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT"
+ "x-ms-request-id" : "86be8506-101a-010f-1e09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
} ],
- "variables" : [ "share89717092" ]
+ "variables" : [ "share01555f5c" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteDoesNotExistFromShareClient.json b/storage/client/file/src/test/resources/session-records/deleteDoesNotExistFromShareClient.json
index a46553c998e03..4ff9fcd1d3f2f 100644
--- a/storage/client/file/src/test/resources/session-records/deleteDoesNotExistFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteDoesNotExistFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share3115815a?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share48140ff3?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d24-001a-006b-2c75-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781d24-001a-006b-2c75-4192c4000000\nTime:2019-07-23T16:40:27.6797839Z",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "x-ms-request-id" : "86be8514-101a-010f-2909-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be8514-101a-010f-2909-449bd5000000\nTime:2019-07-26T23:25:41.5233845Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share3115815a?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share48140ff3?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d25-001a-006b-2d75-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781d25-001a-006b-2d75-4192c4000000\nTime:2019-07-23T16:40:27.7278190Z",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "x-ms-request-id" : "86be8515-101a-010f-2a09-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be8515-101a-010f-2a09-449bd5000000\nTime:2019-07-26T23:25:41.5584180Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share3115815a" ]
+ "variables" : [ "share48140ff3" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteFileFromDirClient.json b/storage/client/file/src/test/resources/session-records/deleteFileFromDirClient.json
index 3adb5ab423fe4..2443be5f1db8a 100644
--- a/storage/client/file/src/test/resources/session-records/deleteFileFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteFileFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory626180?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory40259e?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB68C1295\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D7122110B8BAC1\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ee3-001a-006b-3975-4192c4000000",
+ "x-ms-request-id" : "86be9447-101a-010f-3009-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:12 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory626180%2ftestfile",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory40259e%2ftestfile",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,18 +28,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB697D48C\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D7122110BE6176\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:12 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ee5-001a-006b-3a75-4192c4000000",
+ "x-ms-request-id" : "86be9448-101a-010f-3109-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:12 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory626180%2ftestfile",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory40259e%2ftestfile",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,9 +50,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781ee6-001a-006b-3b75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:42:12 GMT"
+ "x-ms-request-id" : "86be9449-101a-010f-3209-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
} ],
- "variables" : [ "directory626180" ]
+ "variables" : [ "directory40259e" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteFileWithoutCreateFileFromDirClient.json b/storage/client/file/src/test/resources/session-records/deleteFileWithoutCreateFileFromDirClient.json
index 3c115479ceb8d..3391f2656d1ef 100644
--- a/storage/client/file/src/test/resources/session-records/deleteFileWithoutCreateFileFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteFileWithoutCreateFileFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory07934d?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory595604?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5B64C58\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D7122110117D5E\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781eca-001a-006b-2075-4192c4000000",
+ "x-ms-request-id" : "86be942c-101a-010f-1709-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory07934d%2ftestfile",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory595604%2ftestfile",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "223",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781ecb-001a-006b-2175-4192c4000000",
- "Body" : "ResourceNotFound
The specified resource does not exist.\nRequestId:a4781ecb-001a-006b-2175-4192c4000000\nTime:2019-07-23T16:42:11.5220165Z",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "x-ms-request-id" : "86be942d-101a-010f-1809-449bd5000000",
+ "Body" : "ResourceNotFound
The specified resource does not exist.\nRequestId:86be942d-101a-010f-1809-449bd5000000\nTime:2019-07-26T23:29:10.9470355Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "directory07934d" ]
+ "variables" : [ "directory595604" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteFromDirClient.json b/storage/client/file/src/test/resources/session-records/deleteFromDirClient.json
index a8a76a8698efa..4246812d68ad0 100644
--- a/storage/client/file/src/test/resources/session-records/deleteFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory046037?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory068498?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5A1FD55\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D712210FFB5807\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ec8-001a-006b-1e75-4192c4000000",
+ "x-ms-request-id" : "86be942a-101a-010f-1509-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory046037?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory068498?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,9 +31,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781ec9-001a-006b-1f75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "x-ms-request-id" : "86be942b-101a-010f-1609-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
} ],
- "variables" : [ "directory046037" ]
+ "variables" : [ "directory068498" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteFromFileClient.json b/storage/client/file/src/test/resources/session-records/deleteFromFileClient.json
index cffa83f7633a6..ba03217b72608 100644
--- a/storage/client/file/src/test/resources/session-records/deleteFromFileClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteFromFileClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile29223793",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile8753013f",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3DE92082\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "ETag" : "\"0x8D7122059D6B985\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c23-001a-006b-2975-4192c4000000",
+ "x-ms-request-id" : "86be83ed-101a-010f-0609-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:49 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:04 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile29223793",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile8753013f",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,9 +31,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781c24-001a-006b-2a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT"
+ "x-ms-request-id" : "86be83ee-101a-010f-0709-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:24:04 GMT"
}
} ],
- "variables" : [ "file29223793" ]
+ "variables" : [ "file8753013f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteFromShareClient.json b/storage/client/file/src/test/resources/session-records/deleteFromShareClient.json
index 53a92388620c4..3a3012e080c13 100644
--- a/storage/client/file/src/test/resources/session-records/deleteFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share5654566a?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08744278?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C954995E4\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "ETag" : "\"0x8D71220B0119D85\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:29 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dc8-001a-006b-8075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85bf-101a-010f-0d09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share5654566a?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08744278?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -30,12 +30,12 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781dca-001a-006b-0175-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85c1-101a-010f-0e09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share5654566a?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08744278?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -47,11 +47,11 @@
"retry-after" : "0",
"Content-Length" : "244",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781dcb-001a-006b-0275-4192c4000000",
- "Body" : "ShareBeingDeleted
The specified share is being deleted. Try operation later.\nRequestId:a4781dcb-001a-006b-0275-4192c4000000\nTime:2019-07-23T16:41:17.1721039Z",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "x-ms-request-id" : "86be85c2-101a-010f-0f09-449bd5000000",
+ "Body" : "ShareBeingDeleted
The specified share is being deleted. Try operation later.\nRequestId:86be85c2-101a-010f-0f09-449bd5000000\nTime:2019-07-26T23:26:29.9143111Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share5654566a" ]
+ "variables" : [ "share08744278" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteNotExistFromDirClient.json b/storage/client/file/src/test/resources/session-records/deleteNotExistFromDirClient.json
index 25e82ae32c1ad..fee7491ca1da6 100644
--- a/storage/client/file/src/test/resources/session-records/deleteNotExistFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteNotExistFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory41395a?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory915087?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,11 +13,11 @@
"retry-after" : "0",
"Content-Length" : "223",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781eb7-001a-006b-0f75-4192c4000000",
- "Body" : "ResourceNotFound
The specified resource does not exist.\nRequestId:a4781eb7-001a-006b-0f75-4192c4000000\nTime:2019-07-23T16:42:10.4402453Z",
- "Date" : "Tue, 23 Jul 2019 16:42:09 GMT",
+ "x-ms-request-id" : "86be941a-101a-010f-0609-449bd5000000",
+ "Body" : "ResourceNotFound
The specified resource does not exist.\nRequestId:86be941a-101a-010f-0609-449bd5000000\nTime:2019-07-26T23:29:10.0842174Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "directory41395a" ]
+ "variables" : [ "directory915087" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteShare.json b/storage/client/file/src/test/resources/session-records/deleteShare.json
index 89ea9be57e9e9..9a43d2f6069a4 100644
--- a/storage/client/file/src/test/resources/session-records/deleteShare.json
+++ b/storage/client/file/src/test/resources/session-records/deleteShare.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share18053aa4?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9481658a?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CED0E7D6D\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "ETag" : "\"0x8D7122134B7EA02\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:12 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f77-001a-006b-6875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT"
+ "x-ms-request-id" : "86be967c-101a-010f-180a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share18053aa4?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9481658a?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -30,12 +30,12 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781f79-001a-006b-6975-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT"
+ "x-ms-request-id" : "86be967f-101a-010f-190a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share18053aa4&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -46,11 +46,2823 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f7a-001a-006b-6a75-4192c4000000",
- "Body" : "share18053aa4",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "x-ms-request-id" : "86be9680-101a-010f-1a0a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9681-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9681-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:12.6215679Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9682-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9682-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:12.6535987Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9684-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9684-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:12.6846279Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9685-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9685-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:12.7156575Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9686-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9686-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:12.7466862Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9687-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9687-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:12.7787167Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9688-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9688-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:12.8097470Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9689-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9689-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:12.8407773Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be968a-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be968a-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:12.8718057Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be968b-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be968b-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:12.9028361Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be968c-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be968c-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:12.9338654Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be968d-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be968d-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:12.9648957Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be968e-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be968e-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:12.9959242Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be968f-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be968f-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:13.0279547Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9690-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9690-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:13.0589841Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9691-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9691-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:13.0910147Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9692-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9692-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:13.1230457Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9693-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9693-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:13.1540751Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9694-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9694-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:13.1831030Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9695-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9695-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:13.2141338Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9696-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9696-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:13.2451622Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9697-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9697-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:13.2761916Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9698-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9698-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:13.3072214Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9699-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9699-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:13.3382513Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be969a-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be969a-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:13.3702819Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be969b-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be969b-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:13.4013122Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be969c-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be969c-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:13.4333413Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be969d-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be969d-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:13.4653719Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be969e-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be969e-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:13.4964031Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be969f-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be969f-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:13.5274311Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96a0-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96a0-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:13.5584623Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96a1-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96a1-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:13.5954965Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96a2-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96a2-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:13.6275275Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96a3-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96a3-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:13.6615600Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96a5-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96a5-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:13.6935897Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96a6-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96a6-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:13.7246195Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96a7-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96a7-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:13.7546491Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96a8-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96a8-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:13.7846771Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96a9-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96a9-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:13.8167075Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96aa-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96aa-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:13.8497386Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ab-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ab-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:13.8827696Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ac-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ac-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:13.9148009Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ad-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ad-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:13.9448289Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ae-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ae-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:13.9768602Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96af-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96af-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:14.0068882Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b0-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b0-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:14.0399183Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b1-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b1-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:14.0709480Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b2-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b2-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:14.1029797Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b3-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b3-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:14.1340094Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b4-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b4-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:14.1660383Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b5-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b5-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:14.1980687Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b6-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b6-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:14.2310997Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b7-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b7-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:14.2631310Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b8-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b8-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:14.2961621Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96b9-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96b9-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:14.3281920Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ba-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ba-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:14.3632254Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96bb-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96bb-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:14.3962570Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96bc-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96bc-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:14.4292890Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96bd-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96bd-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:14.4583162Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96be-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96be-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:14.4913464Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96bf-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96bf-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:14.5273805Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c0-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c0-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:14.5594109Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c1-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c1-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:14.5884382Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c2-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c2-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:14.6164652Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c3-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c3-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:14.6464932Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c4-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c4-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:14.6755209Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c5-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c5-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:14.7075513Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c6-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c6-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:14.7375797Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c7-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c7-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:14.7716120Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c8-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c8-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:14.8026412Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96c9-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96c9-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:14.8336713Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ca-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ca-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:14.8657016Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96cb-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96cb-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:14.8957296Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96cc-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96cc-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:14.9277600Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96cd-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96cd-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:14.9617922Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ce-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ce-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:14.9938226Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96cf-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96cf-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:15.0228503Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96d0-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96d0-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:15.0548807Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96d1-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96d1-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:15.0869106Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96d2-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96d2-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:15.1289513Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96d3-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96d3-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:15.1609817Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96d4-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96d4-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:15.1940123Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96d5-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96d5-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:15.2270438Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96d6-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96d6-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:15.2600754Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96d7-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96d7-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:15.2911041Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96d8-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96d8-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:15.3241356Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96da-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96da-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:15.3551652Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96db-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96db-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:15.3851946Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96dc-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96dc-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:15.4182257Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96dd-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96dd-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:15.4502551Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96de-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96de-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:15.4822864Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96df-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96df-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:15.5233251Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e0-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e0-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:15.5533545Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e1-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e1-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:15.5833829Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e2-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e2-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:15.6144107Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e3-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e3-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:15.6454408Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e4-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e4-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:15.6764695Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e5-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e5-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:15.7085008Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e6-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e6-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:15.7395304Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e7-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e7-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:15.7695584Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e8-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e8-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:15.8015878Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96e9-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96e9-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:15.8336196Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ea-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ea-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:15.8666502Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96eb-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96eb-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:15.8976808Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ee-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ee-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:15.9287090Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ef-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ef-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:15.9617410Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96f0-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96f0-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:15.9937704Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96f1-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96f1-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:16.0318065Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96f2-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96f2-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:16.0628352Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96f3-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96f3-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:16.0938648Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96f4-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96f4-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:16.1268964Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96f5-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96f5-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:16.1589272Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96f7-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96f7-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:16.1899578Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96f8-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96f8-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:16.2209860Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96f9-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96f9-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:16.2520156Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96fa-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96fa-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:16.2840460Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96fb-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96fb-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:16.3140735Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96fc-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96fc-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:16.3471060Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96fd-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96fd-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:16.3771349Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96fe-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96fe-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:16.4091643Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be96ff-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be96ff-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:16.4391919Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9700-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9700-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:16.4722253Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9701-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9701-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:16.5032540Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9702-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9702-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:16.5332829Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9703-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9703-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:16.5643116Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9704-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9704-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:16.5963420Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9705-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9705-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:16.6253683Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9706-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9706-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:16.6553972Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9707-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9707-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:16.6854261Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9708-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9708-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:16.7174565Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9709-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9709-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:16.7484852Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be970a-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be970a-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:16.7795149Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be970b-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be970b-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:16.8105443Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be970c-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be970c-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:16.8445772Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be970d-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be970d-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:16.8766078Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be970e-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be970e-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:16.9096391Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be970f-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be970f-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:16.9416696Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9710-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9710-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:16.9737002Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9711-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9711-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:17.0197441Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9712-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9712-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:17.0517742Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9713-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9713-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:17.0838053Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9714-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9714-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:17.1158363Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9715-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9715-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:17.1478673Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9716-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9716-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:17.1808981Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9718-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9718-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:17.2129287Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9719-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9719-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:17.2449597Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be971a-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be971a-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:17.2759887Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be971b-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be971b-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:17.3080201Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:16 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share18053aa4" ]
+ "variables" : [ "share9481658a" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteShareDoesNotExist.json b/storage/client/file/src/test/resources/session-records/deleteShareDoesNotExist.json
index b4eb91ed496b4..2aeab83eb24b3 100644
--- a/storage/client/file/src/test/resources/session-records/deleteShareDoesNotExist.json
+++ b/storage/client/file/src/test/resources/session-records/deleteShareDoesNotExist.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share60248f77?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share49966004?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781f91-001a-006b-7d75-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781f91-001a-006b-7d75-4192c4000000\nTime:2019-07-23T16:43:45.5241000Z",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "x-ms-request-id" : "86be9a37-101a-010f-310a-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be9a37-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:42.2386811Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share60248f77&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,11 +31,2861 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f92-001a-006b-7e75-4192c4000000",
- "Body" : "share60248f77",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "x-ms-request-id" : "86be9a38-101a-010f-320a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a39-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a39-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:42.3758122Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a3a-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a3a-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:42.4078421Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a3b-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a3b-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:42.4408736Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a3c-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a3c-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:42.4709025Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a3d-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a3d-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:42.5019308Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a3e-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a3e-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:42.5339611Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a3f-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a3f-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:42.5669936Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a40-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a40-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:42.6000242Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a41-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a41-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:42.6320541Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a42-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a42-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:42.6630842Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a43-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a43-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:42.6941134Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a45-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a45-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:42.7251421Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a46-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a46-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:42.7641793Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a47-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a47-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:42.7962092Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a48-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a48-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:42.8272388Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a49-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a49-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:42.8612711Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a4a-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a4a-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:42.8933024Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a4d-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a4d-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:42.9243311Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a4e-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a4e-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:42.9563614Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a4f-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a4f-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:42.9873915Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a50-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a50-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:43.0184198Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a51-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a51-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:43.0494513Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a52-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a52-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:43.0814793Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a53-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a53-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:43.1125094Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a54-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a54-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:43.1435386Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a55-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a55-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:43.1745687Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a56-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a56-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:43.2065986Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a57-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a57-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:43.2386299Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a58-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a58-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:43.2696590Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a59-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a59-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:43.2996875Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a5a-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a5a-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:43.3267133Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a5b-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a5b-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:43.3557411Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a5c-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a5c-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:43.3877700Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a5d-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a5d-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:43.4188006Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a5e-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a5e-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:43.4488277Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a5f-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a5f-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:43.4808589Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a60-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a60-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:43.5108874Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a61-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a61-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:43.5429178Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a62-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a62-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:43.5779503Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a63-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a63-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:43.6089808Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a64-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a64-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:43.6410107Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a65-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a65-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:43.6720404Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:42 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a66-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a66-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:43.7030700Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a68-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a68-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:43.7320977Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a69-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a69-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:43.7611246Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a6a-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a6a-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:43.7911535Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a6b-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a6b-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:43.8211810Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a6c-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a6c-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:43.8532123Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a6d-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a6d-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:43.8842415Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a6e-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a6e-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:43.9162718Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a6f-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a6f-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:43.9463007Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a70-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a70-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:43.9783306Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a71-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a71-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:44.0093589Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a72-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a72-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:44.0403890Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a73-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a73-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:44.0714186Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a74-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a74-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:44.1034499Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a75-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a75-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:44.1344786Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a76-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a76-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:44.1665080Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a77-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a77-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:44.1975381Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a78-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a78-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:44.2265654Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a79-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a79-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:44.2565943Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a7a-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a7a-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:44.2886256Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a7b-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a7b-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:44.3196548Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a7c-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a7c-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:44.3506826Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a7d-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a7d-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:44.3827129Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a7e-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a7e-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:44.4147451Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a7f-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a7f-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:44.4477753Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a80-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a80-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:44.4818080Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a81-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a81-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:44.5108348Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a82-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a82-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:44.5408628Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a83-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a83-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:44.5738948Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a84-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a84-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:44.6049254Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a85-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a85-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:44.6369543Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a86-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a86-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:44.6679835Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a87-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a87-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:44.7020158Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:43 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a88-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a88-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:44.7350473Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a89-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a89-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:44.7640746Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a8a-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a8a-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:44.7961049Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a8b-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a8b-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:44.8291366Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a8c-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a8c-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:44.8621684Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a8d-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a8d-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:44.8941985Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a8e-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a8e-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:44.9252283Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a8f-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a8f-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:44.9562591Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a90-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a90-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:44.9872876Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a91-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a91-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:45.0183165Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a92-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a92-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:45.0503475Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a93-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a93-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:45.0823781Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a94-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a94-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:45.1124067Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a95-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a95-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:45.1494423Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a96-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a96-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:45.1854767Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a97-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a97-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:45.2265161Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a98-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a98-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:45.2575454Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a99-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a99-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:45.2955817Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a9a-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a9a-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:45.3326187Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a9b-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a9b-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:45.3696519Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a9c-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a9c-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:45.4006832Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a9d-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a9d-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:45.4327128Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a9e-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a9e-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:45.4627419Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a9f-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a9f-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:45.4947720Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa0-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa0-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:45.5268021Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa1-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa1-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:45.5568322Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa2-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa2-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:45.5878611Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa3-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa3-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:45.6188905Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa4-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa4-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:45.6509201Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa5-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa5-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:45.6819499Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:44 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa6-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa6-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:45.7129798Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa7-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa7-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:45.7450113Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa8-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa8-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:45.7770409Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aa9-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aa9-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:45.8060688Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aaa-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aaa-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:45.8381001Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aab-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aab-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:45.8701295Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aac-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aac-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:45.9011592Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aad-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aad-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:45.9321883Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aae-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aae-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:45.9632170Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aaf-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aaf-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:45.9942467Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ab0-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ab0-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:46.0252772Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ab1-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ab1-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:46.0563050Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ab2-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ab2-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:46.0873356Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ab3-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ab3-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:46.1203667Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ab4-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ab4-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:46.1503951Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ab5-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ab5-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:46.1824255Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ab6-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ab6-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:46.2174584Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ab8-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ab8-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:46.2484881Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ab9-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ab9-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:46.2865251Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aba-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aba-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:46.3175533Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9abb-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9abb-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:46.3485829Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9abd-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9abd-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:46.3796121Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9abe-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9abe-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:46.4116425Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9abf-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9abf-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:46.4466754Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac0-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac0-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:46.4787063Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac1-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac1-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:46.5107357Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac2-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac2-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:46.5417658Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac3-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac3-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:46.5737971Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac4-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac4-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:46.6098307Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac5-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac5-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:46.6408595Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac6-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac6-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:46.6718891Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac7-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac7-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:46.7029183Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:45 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac8-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac8-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:46.7339484Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ac9-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ac9-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:46.7659783Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9acc-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9acc-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:46.7960072Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ace-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ace-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:46.8240337Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9acf-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9acf-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:46.8530610Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ad0-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ad0-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:46.8820883Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ad1-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ad1-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:46.9131179Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ad2-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ad2-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:46.9421447Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ad3-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ad3-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:46.9711734Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ad4-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ad4-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:47.0052052Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ad5-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ad5-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:47.0352332Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ad6-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ad6-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:47.0662638Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ad7-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ad7-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:47.0972925Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share60248f77" ]
+ "variables" : [ "share49966004" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteSnapshotFromShareClient.json b/storage/client/file/src/test/resources/session-records/deleteSnapshotFromShareClient.json
index af124b98d68ab..b4c46e664484a 100644
--- a/storage/client/file/src/test/resources/session-records/deleteSnapshotFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteSnapshotFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share14317636?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,36 +9,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C78330487\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "ETag" : "\"0x8D71220938A1555\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d31-001a-006b-3675-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT"
+ "x-ms-request-id" : "86be851e-101a-010f-3109-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share14317636?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:40:28.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:25:42.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C78330487\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "ETag" : "\"0x8D71220938A1555\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d33-001a-006b-3775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT"
+ "x-ms-request-id" : "86be8520-101a-010f-3209-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share14317636?sharesnapshot=2019-07-23T16%3a40%3a28.0000000Z&restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?sharesnapshot=2019-07-26T23%3a25%3a42.0000000Z&restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,31 +49,31 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "3975b159-b01a-003d-1975-417ab4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT"
+ "x-ms-request-id" : "65e43b00-401a-011c-1c09-44ae34000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share14317636?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:40:28.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:25:42.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C78330487\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "ETag" : "\"0x8D71220938A1555\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d34-001a-006b-3875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT"
+ "x-ms-request-id" : "86be8521-101a-010f-3309-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share14317636?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -85,11 +85,11 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781d35-001a-006b-3975-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781d35-001a-006b-3975-4192c4000000\nTime:2019-07-23T16:40:28.5564098Z",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "x-ms-request-id" : "86be8522-101a-010f-3409-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be8522-101a-010f-3409-449bd5000000\nTime:2019-07-26T23:25:42.1329625Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share14317636" ]
+ "variables" : [ "share73858b48" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteSubDirectory.json b/storage/client/file/src/test/resources/session-records/deleteSubDirectory.json
index c1ee2fab26aeb..9c3df752f180d 100644
--- a/storage/client/file/src/test/resources/session-records/deleteSubDirectory.json
+++ b/storage/client/file/src/test/resources/session-records/deleteSubDirectory.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory283117?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory11048d?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB588CB7C\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D712210FE5CF15\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ec5-001a-006b-1b75-4192c4000000",
+ "x-ms-request-id" : "86be9427-101a-010f-1209-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory283117%2fdir94734a771?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory11048d%2fdir025986dd8?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,18 +28,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5910A5F\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D712210FEB75BC\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ec6-001a-006b-1c75-4192c4000000",
+ "x-ms-request-id" : "86be9428-101a-010f-1309-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory283117%2fdir94734a771?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory11048d%2fdir025986dd8?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,9 +50,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781ec7-001a-006b-1d75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "x-ms-request-id" : "86be9429-101a-010f-1409-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
} ],
- "variables" : [ "directory283117", "dir94734a771" ]
+ "variables" : [ "directory11048d", "dir025986dd8" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteThenCreateFromShareClient.json b/storage/client/file/src/test/resources/session-records/deleteThenCreateFromShareClient.json
index 40b598a321a9a..d18060db2d7c8 100644
--- a/storage/client/file/src/test/resources/session-records/deleteThenCreateFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteThenCreateFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share2914350c?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share97787d6b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C798FEE18\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:30 GMT",
+ "ETag" : "\"0x8D7122094A1BC9C\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d61-001a-006b-5b75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be8550-101a-010f-5609-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share2914350c?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share97787d6b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -30,12 +30,12 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d64-001a-006b-5c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be8552-101a-010f-5709-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share2914350c?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share97787d6b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -43,17 +43,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C9473F66D\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "ETag" : "\"0x8D71220AF8036AD\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:28 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781da8-001a-006b-6975-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:14 GMT"
+ "x-ms-request-id" : "86be85a0-101a-010f-7609-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share2914350c?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share97787d6b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -64,9 +64,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781dab-001a-006b-6a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:14 GMT"
+ "x-ms-request-id" : "86be85a3-101a-010f-7709-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT"
}
} ],
- "variables" : [ "share2914350c" ]
+ "variables" : [ "share97787d6b" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteThenCreateShareFromFileStorageClient.json b/storage/client/file/src/test/resources/session-records/deleteThenCreateShareFromFileStorageClient.json
new file mode 100644
index 0000000000000..62720feb42e70
--- /dev/null
+++ b/storage/client/file/src/test/resources/session-records/deleteThenCreateShareFromFileStorageClient.json
@@ -0,0 +1,2978 @@
+{
+ "networkCallRecords" : [ {
+ "Method" : "PUT",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69553357?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "ETag" : "\"0x8D712216792D88D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:31:37 GMT",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "201",
+ "x-ms-request-id" : "86bea143-101a-010f-780a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69553357?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86bea145-101a-010f-790a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT"
+ }
+ }, {
+ "Method" : "PUT",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69553357?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "ETag" : "\"0x8D7122182708EE1\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "201",
+ "x-ms-request-id" : "86bea189-101a-010f-070a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:32:21 GMT"
+ }
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "StatusCode" : "200",
+ "x-ms-request-id" : "86bea18d-101a-010f-080a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share69553357Fri, 26 Jul 2019 23:32:22 GMT\"0x8D7122182708EE1\"5120share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea18e-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea18e-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:32:22.9571600Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea18f-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea18f-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:32:22.9881889Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea190-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea190-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:32:23.0202204Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea191-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea191-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:32:23.0522505Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea192-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea192-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:32:23.0852832Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea194-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea194-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:32:23.1173128Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea195-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea195-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:32:23.1483422Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea196-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea196-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:32:23.1803728Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea197-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea197-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:32:23.2104010Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea198-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea198-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:32:23.2424329Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea199-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea199-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:32:23.2724611Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea19a-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea19a-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:32:23.3064926Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea19b-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea19b-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:32:23.3375234Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea19c-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea19c-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:32:23.3675511Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea19d-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea19d-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:32:23.3965795Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea19e-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea19e-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:32:23.4276084Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea19f-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea19f-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:32:23.4596399Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a0-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a0-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:32:23.4926708Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a1-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a1-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:32:23.5257025Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a2-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a2-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:32:23.5577326Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a3-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a3-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:32:23.5907641Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a4-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a4-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:32:23.6247968Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a5-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a5-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:32:23.6548253Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a6-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a6-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:32:23.6848528Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a7-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a7-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:32:23.7168832Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a8-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a8-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:32:23.7489135Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1a9-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1a9-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:32:23.7779427Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1aa-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1aa-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:32:23.8099726Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ab-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ab-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:32:23.8410013Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ad-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ad-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:32:23.8740323Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ae-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ae-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:32:23.9040627Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1af-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1af-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:32:23.9340897Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b0-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b0-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:32:23.9771312Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b1-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b1-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:32:24.0081599Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b2-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b2-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:32:24.0381893Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b3-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b3-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:32:24.0702183Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b4-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b4-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:32:24.1012479Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b5-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b5-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:32:24.1342790Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b6-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b6-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:32:24.1653081Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b7-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b7-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:32:24.1963382Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b8-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b8-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:32:24.2273683Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1b9-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1b9-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:32:24.2583971Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ba-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ba-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:32:24.2894258Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1bb-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1bb-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:32:24.3214561Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1bc-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1bc-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:32:24.3514846Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1bd-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1bd-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:32:24.3815140Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1be-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1be-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:32:24.4125431Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1bf-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1bf-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:32:24.4415709Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c0-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c0-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:32:24.4726001Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c1-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c1-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:32:24.5016273Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c2-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c2-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:32:24.5386622Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c3-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c3-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:32:24.5696928Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c4-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c4-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:32:24.5997203Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c5-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c5-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:32:24.6307504Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c6-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c6-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:32:24.6607779Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c7-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c7-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:32:24.6918080Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c8-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c8-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:32:24.7238384Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1c9-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1c9-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:32:24.7548671Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ca-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ca-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:32:24.7858972Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1cb-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1cb-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:32:24.8179275Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1cc-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1cc-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:32:24.8479555Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1cd-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1cd-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:32:24.8789856Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ce-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ce-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:32:24.9120162Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1cf-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1cf-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:32:24.9430454Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d0-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d0-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:32:24.9740751Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d1-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d1-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:32:25.0051052Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d2-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d2-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:32:25.0361334Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d3-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d3-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:32:25.0681642Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d4-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d4-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:32:25.1001941Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d5-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d5-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:32:25.1312233Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d6-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d6-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:32:25.1642548Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d7-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d7-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:32:25.1962856Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d8-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d8-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:32:25.2323193Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1d9-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1d9-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:32:25.2643501Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1da-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1da-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:32:25.2973808Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1db-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1db-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:32:25.3294120Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1dc-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1dc-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:32:25.3614419Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1dd-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1dd-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:32:25.3934723Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1de-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1de-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:32:25.4305090Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1df-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1df-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:32:25.4655410Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e0-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e0-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:32:25.4995733Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e1-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e1-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:32:25.5286001Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e2-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e2-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:32:25.5586286Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e3-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e3-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:32:25.5866561Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e4-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e4-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:32:25.6166841Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e5-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e5-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:32:25.6477128Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e6-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e6-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:32:25.6777426Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e7-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e7-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:32:25.7077701Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e8-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e8-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:32:25.7388007Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1e9-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1e9-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:32:25.7688278Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ea-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ea-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:32:25.7968543Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1eb-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1eb-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:32:25.8258825Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ec-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ec-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:32:25.8549107Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ed-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ed-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:32:25.8859390Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ee-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ee-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:32:25.9139660Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1ef-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1ef-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:32:25.9429938Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f0-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f0-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:32:25.9750236Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f1-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f1-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:32:26.0060528Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f2-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f2-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:32:26.0370820Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f3-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f3-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:32:26.0701135Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f4-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f4-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:32:26.1021448Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f5-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f5-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:32:26.1331740Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f6-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f6-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:32:26.1642027Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f7-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f7-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:32:26.1962331Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f8-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f8-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:32:26.2262620Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1f9-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1f9-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:32:26.2572907Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1fa-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1fa-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:32:26.2893215Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1fb-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1fb-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:32:26.3313623Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1fc-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1fc-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:32:26.3623905Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea1fe-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea1fe-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:32:26.3944213Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69553357?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86bea1ff-101a-010f-770a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea200-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea200-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:32:26.4564801Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea201-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea201-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:32:26.4875089Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea202-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea202-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:32:26.5175373Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea203-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea203-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:32:26.5475662Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea204-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea204-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:32:26.5775961Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea205-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea205-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:32:26.6086243Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea206-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea206-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:32:26.6406556Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea207-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea207-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:32:26.6706831Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea208-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea208-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:32:26.7007116Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea209-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea209-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:32:26.7317412Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea20a-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea20a-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:32:26.7627718Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea20b-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea20b-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:32:26.7978034Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea20c-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea20c-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:32:26.8268307Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea20d-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea20d-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:32:26.8588624Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea20e-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea20e-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:32:26.8898902Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea20f-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea20f-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:32:26.9199186Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea210-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea210-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:32:26.9509487Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea211-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea211-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:32:26.9809767Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea212-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea212-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:32:27.0130071Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea213-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea213-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:32:27.0460382Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea214-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea214-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:32:27.0770678Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea215-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea215-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:32:27.1100989Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea216-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea216-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:32:27.1411285Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea217-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea217-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:32:27.1711579Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea218-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea218-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:32:27.2031873Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea219-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea219-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:32:27.2342165Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea21a-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea21a-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:32:27.2662473Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea21b-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea21b-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:32:27.2982777Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea21c-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea21c-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:32:27.3293073Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea21d-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea21d-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:32:27.3613372Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea21e-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea21e-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:32:27.3913661Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea21f-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea21f-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:32:27.4223944Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea220-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea220-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:32:27.4544261Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea221-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea221-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:32:27.4854553Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea222-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea222-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:32:27.5154838Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea223-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea223-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:32:27.5485153Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea224-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea224-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:32:27.5795441Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea225-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea225-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:32:27.6105740Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea226-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea226-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:32:27.6416038Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea227-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea227-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:32:27.6726327Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea228-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea228-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:32:27.7046633Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea229-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea229-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:32:27.7346924Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ } ],
+ "variables" : [ "share69553357" ]
+}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteThenCreateShareTooSoonFromFileStorageClient.json b/storage/client/file/src/test/resources/session-records/deleteThenCreateShareTooSoonFromFileStorageClient.json
new file mode 100644
index 0000000000000..3eea9456e93a0
--- /dev/null
+++ b/storage/client/file/src/test/resources/session-records/deleteThenCreateShareTooSoonFromFileStorageClient.json
@@ -0,0 +1,2887 @@
+{
+ "networkCallRecords" : [ {
+ "Method" : "PUT",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share96589d29?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "ETag" : "\"0x8D71221407CB916\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "201",
+ "x-ms-request-id" : "86be98ef-101a-010f-790a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share96589d29?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86be98f1-101a-010f-7a0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT"
+ }
+ }, {
+ "Method" : "PUT",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share96589d29?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareBeingDeleted",
+ "retry-after" : "0",
+ "Content-Length" : "244",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98f2-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareBeingDeleted
The specified share is being deleted. Try operation later.\nRequestId:86be98f2-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:32.2081629Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "StatusCode" : "200",
+ "x-ms-request-id" : "86be98f3-101a-010f-7c0a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98f4-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98f4-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:32.3272751Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98f5-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98f5-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:32.3583043Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98f6-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98f6-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:32.3933382Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98f7-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98f7-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:32.4243678Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98f9-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98f9-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:32.4573989Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98fa-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98fa-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:32.4894288Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98fb-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98fb-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:32.5204579Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98fc-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98fc-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:32.5524887Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98fd-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98fd-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:32.5835179Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98fe-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98fe-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:32.6195525Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be98ff-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be98ff-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:32.6525836Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9900-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9900-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:32.6866159Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9902-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9902-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:32.7206481Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9903-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9903-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:32.7526780Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9904-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9904-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:32.7867107Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9905-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9905-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:32.8167392Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9906-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9906-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:32.8487700Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9907-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9907-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:32.8797987Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9908-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9908-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:32.9108283Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9909-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9909-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:32.9418580Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be990a-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be990a-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:32.9738879Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be990b-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be990b-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:33.0059187Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be990c-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be990c-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:33.0379486Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be990d-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be990d-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:33.0679770Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be990e-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be990e-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:33.0990067Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be990f-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be990f-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:33.1300363Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9910-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9910-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:33.1600652Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9911-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9911-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:33.1920951Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9912-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9912-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:33.2231243Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9913-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9913-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:33.2541539Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9914-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9914-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:33.2861843Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9915-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9915-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:33.3162141Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9916-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9916-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:33.3472429Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9917-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9917-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:33.3812746Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9918-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9918-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:33.4123043Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9919-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9919-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:33.4443342Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be991a-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be991a-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:33.4743631Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be991b-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be991b-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:33.5053918Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be991c-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be991c-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:33.5374226Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be991d-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be991d-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:33.5694534Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be991e-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be991e-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:33.5984812Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be991f-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be991f-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:33.6295094Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9920-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9920-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:33.6595379Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9921-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9921-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:33.6915678Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9923-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9923-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:33.7225979Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9924-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9924-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:33.7546287Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9925-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9925-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:33.7856569Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9926-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9926-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:33.8156873Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9927-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9927-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:33.8467160Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9928-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9928-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:33.8767454Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9929-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9929-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:33.9077731Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be992c-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be992c-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:33.9388032Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be992d-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be992d-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:33.9698324Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be992e-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be992e-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:33.9988597Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be992f-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be992f-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:34.0268862Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9930-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9930-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:34.0589166Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9931-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9931-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:34.0889451Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9932-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9932-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:34.1189731Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9933-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9933-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:34.1500022Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9934-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9934-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:34.1810323Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9935-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9935-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:34.2120610Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9936-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9936-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:34.2440919Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9937-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9937-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:34.2751215Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9938-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9938-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:34.3061511Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9939-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9939-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:34.3391817Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be993a-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be993a-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:34.3692107Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be993b-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be993b-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:34.4002417Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be993c-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be993c-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:34.4302688Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be993d-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be993d-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:34.4633003Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be993e-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be993e-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:34.4953302Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be993f-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be993f-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:34.5263598Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9940-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9940-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:34.5573890Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9941-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9941-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:34.5864163Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9942-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9942-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:34.6154435Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9943-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9943-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:34.6484765Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9944-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9944-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:34.6785040Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9945-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9945-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:34.7105348Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9946-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9946-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:34.7425643Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9947-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9947-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:34.7735939Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9948-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9948-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:34.8036228Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9949-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9949-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:34.8346520Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be994a-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be994a-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:34.8666819Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be994b-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be994b-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:34.8977111Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be994c-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be994c-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:34.9297419Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be994d-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be994d-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:34.9607710Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be994e-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be994e-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:34.9908004Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be994f-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be994f-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:35.0218296Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9950-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9950-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:35.0538595Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9951-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9951-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:35.0858894Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9952-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9952-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:35.1179202Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9953-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9953-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:35.1499515Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9954-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9954-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:35.1809797Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9955-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9955-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:35.2120094Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9956-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9956-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:35.2430385Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9957-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9957-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:35.2750684Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9958-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9958-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:35.3060981Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9959-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9959-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:35.3381284Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be995a-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be995a-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:35.3711604Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be995b-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be995b-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:35.4031908Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be995c-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be995c-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:35.4342204Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be995d-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be995d-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:35.4662508Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be995e-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be995e-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:35.4962792Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be995f-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be995f-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:35.5283091Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9960-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9960-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:35.5603390Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9961-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9961-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:35.5913696Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9962-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9962-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:35.6223983Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9963-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9963-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:35.6524267Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9964-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9964-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:35.6834578Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9965-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9965-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:35.7164884Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9966-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9966-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:35.7475166Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9967-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9967-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:35.7785477Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9968-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9968-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:35.8085744Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9969-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9969-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:35.8386031Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be996a-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be996a-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:35.8686326Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be996b-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be996b-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:35.8986618Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be996c-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be996c-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:35.9306919Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be996d-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be996d-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:35.9617203Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be996e-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be996e-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:35.9937509Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be996f-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be996f-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:36.0257824Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9970-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9970-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:36.0578120Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9971-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9971-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:36.0908437Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9972-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9972-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:36.1218755Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9973-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9973-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:36.1529039Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9974-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9974-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:36.1839328Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9976-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9976-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:36.2159634Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9977-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9977-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:36.2459920Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9978-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9978-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:36.2780226Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9979-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9979-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:36.3090524Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be997a-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be997a-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:36.3400818Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be997b-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be997b-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:36.3711126Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be997c-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be997c-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:36.4061448Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be997d-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be997d-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:36.4361740Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be997e-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be997e-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:36.4672033Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be997f-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be997f-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:36.4982332Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9980-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9980-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:36.5312640Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9981-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9981-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:36.5733046Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9982-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9982-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:36.6043344Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9983-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9983-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:36.6353647Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9984-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9984-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:36.6663936Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9985-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9985-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:36.7044290Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9986-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9986-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:36.7424653Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9987-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9987-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:36.7774994Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9988-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9988-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:36.8165363Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9989-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9989-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:36.8505681Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be998a-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be998a-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:36.8815977Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be998b-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be998b-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:36.9126278Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be998c-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be998c-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:36.9456593Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be998d-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be998d-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:36.9766881Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ } ],
+ "variables" : [ "share96589d29" ]
+}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/deleteThenCreateTooSoonFromShareClient.json b/storage/client/file/src/test/resources/session-records/deleteThenCreateTooSoonFromShareClient.json
index 797a7a88f9656..213e41202492c 100644
--- a/storage/client/file/src/test/resources/session-records/deleteThenCreateTooSoonFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/deleteThenCreateTooSoonFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share5053509d?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9533789b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C77B90350\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "ETag" : "\"0x8D712209328CAED\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d1f-001a-006b-2875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT"
+ "x-ms-request-id" : "86be850f-101a-010f-2509-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share5053509d?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9533789b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -30,12 +30,12 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d21-001a-006b-2975-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT"
+ "x-ms-request-id" : "86be8511-101a-010f-2609-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share5053509d?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9533789b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -47,14 +47,14 @@
"retry-after" : "0",
"Content-Length" : "244",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781d22-001a-006b-2a75-4192c4000000",
- "Body" : "ShareBeingDeleted
The specified share is being deleted. Try operation later.\nRequestId:a4781d22-001a-006b-2a75-4192c4000000\nTime:2019-07-23T16:40:27.5717072Z",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "x-ms-request-id" : "86be8512-101a-010f-2709-449bd5000000",
+ "Body" : "ShareBeingDeleted
The specified share is being deleted. Try operation later.\nRequestId:86be8512-101a-010f-2709-449bd5000000\nTime:2019-07-26T23:25:41.4212887Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share5053509d?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9533789b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -66,11 +66,11 @@
"retry-after" : "0",
"Content-Length" : "244",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781d23-001a-006b-2b75-4192c4000000",
- "Body" : "ShareBeingDeleted
The specified share is being deleted. Try operation later.\nRequestId:a4781d23-001a-006b-2b75-4192c4000000\nTime:2019-07-23T16:40:27.6207424Z",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "x-ms-request-id" : "86be8513-101a-010f-2809-449bd5000000",
+ "Body" : "ShareBeingDeleted
The specified share is being deleted. Try operation later.\nRequestId:86be8513-101a-010f-2809-449bd5000000\nTime:2019-07-26T23:25:41.4563226Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share5053509d" ]
+ "variables" : [ "share9533789b" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/downloadWithProperties.json b/storage/client/file/src/test/resources/session-records/downloadWithProperties.json
index 3370a153ba34a..7b296613b0639 100644
--- a/storage/client/file/src/test/resources/session-records/downloadWithProperties.json
+++ b/storage/client/file/src/test/resources/session-records/downloadWithProperties.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile95252ec1",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile819602d8",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3EE16905\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:52 GMT",
+ "ETag" : "\"0x8D712205A681FF7\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:06 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c39-001a-006b-3e75-4192c4000000",
+ "x-ms-request-id" : "86be8406-101a-010f-1e09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile95252ec1",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile819602d8",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,19 +28,19 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:52 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:06 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"Accept-Ranges" : "bytes",
"x-ms-server-encrypted" : "true",
"x-ms-type" : "File",
- "ETag" : "\"0x8D70F8C3EE16905\"",
+ "ETag" : "\"0x8D712205A681FF7\"",
"Content-Length" : "1024",
- "x-ms-request-id" : "a4781c3a-001a-006b-3f75-4192c4000000",
+ "x-ms-request-id" : "86be8407-101a-010f-1f09-449bd5000000",
"Body" : "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000",
"Content-Type" : "application/octet-stream"
}
} ],
- "variables" : [ "file95252ec1" ]
+ "variables" : [ "file819602d8" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/forceCloseHandlesFromDirClient.json b/storage/client/file/src/test/resources/session-records/forceCloseHandlesFromDirClient.json
index c9591fdb93263..744dec2bdacbb 100644
--- a/storage/client/file/src/test/resources/session-records/forceCloseHandlesFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/forceCloseHandlesFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory240914?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory353036?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB633D07C\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D712211079A6E3\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ed9-001a-006b-2f75-4192c4000000",
+ "x-ms-request-id" : "86be943d-101a-010f-2609-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory240914?comp=listhandles",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory353036?comp=listhandles",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,11 +31,11 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781eda-001a-006b-3075-4192c4000000",
+ "x-ms-request-id" : "86be943e-101a-010f-2709-449bd5000000",
"Body" : "",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:29:11 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "directory240914" ]
+ "variables" : [ "directory353036" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/forceCloseHandlesFromFileClient.json b/storage/client/file/src/test/resources/session-records/forceCloseHandlesFromFileClient.json
index 70454bdb9891a..b83cbc47858c0 100644
--- a/storage/client/file/src/test/resources/session-records/forceCloseHandlesFromFileClient.json
+++ b/storage/client/file/src/test/resources/session-records/forceCloseHandlesFromFileClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile32781af7",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile9996865d",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3E9C6451\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "ETag" : "\"0x8D712205A30AEF9\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c31-001a-006b-3675-4192c4000000",
+ "x-ms-request-id" : "86be83fc-101a-010f-1409-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile32781af7?maxresults=10&comp=listhandles",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile9996865d?maxresults=10&comp=listhandles",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,11 +31,11 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781c32-001a-006b-3775-4192c4000000",
+ "x-ms-request-id" : "86be83fd-101a-010f-1509-449bd5000000",
"Body" : "10",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "file32781af7" ]
+ "variables" : [ "file9996865d" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getDirectoryDoesNotCreateADirectory.json b/storage/client/file/src/test/resources/session-records/getDirectoryDoesNotCreateADirectory.json
index 4046d646879b5..bb60615db9f31 100644
--- a/storage/client/file/src/test/resources/session-records/getDirectoryDoesNotCreateADirectory.json
+++ b/storage/client/file/src/test/resources/session-records/getDirectoryDoesNotCreateADirectory.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share10876776?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share74261076?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C94C66B41\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "ETag" : "\"0x8D71220AFB7A7CE\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:29 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781db7-001a-006b-7375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT"
+ "x-ms-request-id" : "86be85ae-101a-010f-8009-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share10876776/testshare?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share74261076/testshare?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "223",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781db9-001a-006b-7475-4192c4000000",
- "Body" : "ResourceNotFound
The specified resource does not exist.\nRequestId:a4781db9-001a-006b-7475-4192c4000000\nTime:2019-07-23T16:41:16.2604523Z",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85b0-101a-010f-0109-449bd5000000",
+ "Body" : "ResourceNotFound
The specified resource does not exist.\nRequestId:86be85b0-101a-010f-0109-449bd5000000\nTime:2019-07-26T23:26:29.2967243Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share10876776?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share74261076?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781dba-001a-006b-7575-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT"
+ "x-ms-request-id" : "86be85b1-101a-010f-0209-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT"
}
} ],
- "variables" : [ "share10876776" ]
+ "variables" : [ "share74261076" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getFileClientFromDirClient.json b/storage/client/file/src/test/resources/session-records/getFileClientFromDirClient.json
index 8fa3f19ff9cd4..3aca871846398 100644
--- a/storage/client/file/src/test/resources/session-records/getFileClientFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/getFileClientFromDirClient.json
@@ -1,4 +1,4 @@
{
"networkCallRecords" : [ ],
- "variables" : [ "directory877236", "96d7c3acc68d4acc" ]
+ "variables" : [ "directory550191", "46fc795859eb47c2" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getHandlesFromDirClient.json b/storage/client/file/src/test/resources/session-records/getHandlesFromDirClient.json
index 0b31e3f9121c8..61d3a8b09609d 100644
--- a/storage/client/file/src/test/resources/session-records/getHandlesFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/getHandlesFromDirClient.json
@@ -1,4 +1,4 @@
{
"networkCallRecords" : [ ],
- "variables" : [ "directory12788e" ]
+ "variables" : [ "directory801522" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getMetadataDoesNotExistFromShareClient.json b/storage/client/file/src/test/resources/session-records/getMetadataDoesNotExistFromShareClient.json
index f98ba99546d8c..604f903045864 100644
--- a/storage/client/file/src/test/resources/session-records/getMetadataDoesNotExistFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/getMetadataDoesNotExistFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share620248bc?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82110ec2?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d1c-001a-006b-2675-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781d1c-001a-006b-2675-4192c4000000\nTime:2019-07-23T16:40:27.3515501Z",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "x-ms-request-id" : "86be850c-101a-010f-2309-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be850c-101a-010f-2309-449bd5000000\nTime:2019-07-26T23:25:41.2281049Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share620248bc?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82110ec2?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d1e-001a-006b-2775-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781d1e-001a-006b-2775-4192c4000000\nTime:2019-07-23T16:40:27.4035872Z",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "x-ms-request-id" : "86be850e-101a-010f-2409-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be850e-101a-010f-2409-449bd5000000\nTime:2019-07-26T23:25:41.2641400Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share620248bc" ]
+ "variables" : [ "share82110ec2" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getMetadataFromShareClient.json b/storage/client/file/src/test/resources/session-records/getMetadataFromShareClient.json
index 6f7501b7b4c18..3a7c1fe072493 100644
--- a/storage/client/file/src/test/resources/session-records/getMetadataFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/getMetadataFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share14921607?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24203c52?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C7868C45C\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "ETag" : "\"0x8D7122093AD363B\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:42 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d36-001a-006b-3a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT"
+ "x-ms-request-id" : "86be8523-101a-010f-3509-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share14921607?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24203c52?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,20 +28,20 @@
"x-ms-meta-test" : "metadata",
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:42 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT",
"x-ms-has-legal-hold" : "false",
"x-ms-share-quota" : "2",
- "ETag" : "\"0x8D70F8C7868C45C\"",
+ "ETag" : "\"0x8D7122093AD363B\"",
"x-ms-has-immutability-policy" : "false",
"Content-Length" : "0",
- "x-ms-request-id" : "a4781d38-001a-006b-3b75-4192c4000000"
+ "x-ms-request-id" : "86be8525-101a-010f-3609-449bd5000000"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share14921607?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24203c52?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -52,9 +52,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d39-001a-006b-3c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "x-ms-request-id" : "86be8526-101a-010f-3709-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
} ],
- "variables" : [ "share14921607" ]
+ "variables" : [ "share24203c52" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getPolicies.json b/storage/client/file/src/test/resources/session-records/getPolicies.json
index 18ca1b282ab69..d01546c982ca8 100644
--- a/storage/client/file/src/test/resources/session-records/getPolicies.json
+++ b/storage/client/file/src/test/resources/session-records/getPolicies.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share62141b58?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share68950667?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C7725F74B\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D7122092A066FF\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d0a-001a-006b-1875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT"
+ "x-ms-request-id" : "86be84f8-101a-010f-1509-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share62141b58?restype=share&comp=acl",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share68950667?restype=share&comp=acl",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,18 +28,18 @@
"Transfer-Encoding" : "chunked",
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C7725F74B\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D7122092A066FF\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781d0c-001a-006b-1975-4192c4000000",
+ "x-ms-request-id" : "86be84fa-101a-010f-1609-449bd5000000",
"Body" : "",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share62141b58?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share68950667?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,9 +50,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d0d-001a-006b-1a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT"
+ "x-ms-request-id" : "86be84fb-101a-010f-1709-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
} ],
- "variables" : [ "share62141b58" ]
+ "variables" : [ "share68950667" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getPoliciesDoesNotExist.json b/storage/client/file/src/test/resources/session-records/getPoliciesDoesNotExist.json
index 7831055f2c6d1..dea538e1583b6 100644
--- a/storage/client/file/src/test/resources/session-records/getPoliciesDoesNotExist.json
+++ b/storage/client/file/src/test/resources/session-records/getPoliciesDoesNotExist.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share03196264?restype=share&comp=acl",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4886751c?restype=share&comp=acl",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781cfe-001a-006b-0f75-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781cfe-001a-006b-0f75-4192c4000000\nTime:2019-07-23T16:40:25.9575562Z",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT",
+ "x-ms-request-id" : "86be84eb-101a-010f-0c09-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be84eb-101a-010f-0c09-449bd5000000\nTime:2019-07-26T23:25:40.0920252Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:39 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share03196264?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4886751c?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d00-001a-006b-1075-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781d00-001a-006b-1075-4192c4000000\nTime:2019-07-23T16:40:26.0095929Z",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT",
+ "x-ms-request-id" : "86be84ed-101a-010f-0d09-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be84ed-101a-010f-0d09-449bd5000000\nTime:2019-07-26T23:25:40.1280601Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:39 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share03196264" ]
+ "variables" : [ "share4886751c" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getPropertiesDoesNotExistFromShareClient.json b/storage/client/file/src/test/resources/session-records/getPropertiesDoesNotExistFromShareClient.json
index c366d9279459f..1214ef278d460 100644
--- a/storage/client/file/src/test/resources/session-records/getPropertiesDoesNotExistFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/getPropertiesDoesNotExistFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share31141b34?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0659377d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781dbd-001a-006b-7875-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781dbd-001a-006b-7875-4192c4000000\nTime:2019-07-23T16:41:16.4866141Z",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85b4-101a-010f-0509-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be85b4-101a-010f-0509-449bd5000000\nTime:2019-07-26T23:26:29.4598787Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share31141b34?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0659377d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781dbf-001a-006b-7975-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781dbf-001a-006b-7975-4192c4000000\nTime:2019-07-23T16:41:16.5346484Z",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85b6-101a-010f-0609-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be85b6-101a-010f-0609-449bd5000000\nTime:2019-07-26T23:26:29.5039209Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share31141b34" ]
+ "variables" : [ "share0659377d" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getPropertiesFromDirClient.json b/storage/client/file/src/test/resources/session-records/getPropertiesFromDirClient.json
index 5c8e80b286d06..fd3f7d0af3c32 100644
--- a/storage/client/file/src/test/resources/session-records/getPropertiesFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/getPropertiesFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory937333?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory33494a?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB566491E\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "ETag" : "\"0x8D712210FCA5144\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ec1-001a-006b-1775-4192c4000000",
+ "x-ms-request-id" : "86be9422-101a-010f-0e09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory937333?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory33494a?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -29,14 +29,14 @@
"x-ms-server-encrypted" : "true",
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB566491E\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "ETag" : "\"0x8D712210FCA5144\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781ec2-001a-006b-1875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "x-ms-request-id" : "86be9424-101a-010f-0f09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
} ],
- "variables" : [ "directory937333" ]
+ "variables" : [ "directory33494a" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getPropertiesFromFileClient.json b/storage/client/file/src/test/resources/session-records/getPropertiesFromFileClient.json
index 34c88368bdd9e..3895814ddf016 100644
--- a/storage/client/file/src/test/resources/session-records/getPropertiesFromFileClient.json
+++ b/storage/client/file/src/test/resources/session-records/getPropertiesFromFileClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile66368470",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile98367e57",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3EBE716D\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "ETag" : "\"0x8D712205A4EEC96\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c35-001a-006b-3a75-4192c4000000",
+ "x-ms-request-id" : "86be8402-101a-010f-1a09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "HEAD",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile66368470",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile98367e57",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,18 +28,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"x-ms-server-encrypted" : "true",
"x-ms-type" : "File",
- "ETag" : "\"0x8D70F8C3EBE716D\"",
+ "ETag" : "\"0x8D712205A4EEC96\"",
"Content-Length" : "1024",
- "x-ms-request-id" : "a4781c36-001a-006b-3b75-4192c4000000",
+ "x-ms-request-id" : "86be8403-101a-010f-1b09-449bd5000000",
"Body" : "",
"Content-Type" : "application/octet-stream"
}
} ],
- "variables" : [ "file66368470" ]
+ "variables" : [ "file98367e57" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getPropertiesFromShareClient.json b/storage/client/file/src/test/resources/session-records/getPropertiesFromShareClient.json
index dc43fd0afb917..31a091f0cb686 100644
--- a/storage/client/file/src/test/resources/session-records/getPropertiesFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/getPropertiesFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share19304121?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4254911f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C796F40BC\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:30 GMT",
+ "ETag" : "\"0x8D712209488B04D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d5d-001a-006b-5875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be854c-101a-010f-5309-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share19304121?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4254911f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,20 +28,20 @@
"x-ms-meta-test" : "metadata",
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:30 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT",
"x-ms-has-legal-hold" : "false",
"x-ms-share-quota" : "2",
- "ETag" : "\"0x8D70F8C796F40BC\"",
+ "ETag" : "\"0x8D712209488B04D\"",
"x-ms-has-immutability-policy" : "false",
"Content-Length" : "0",
- "x-ms-request-id" : "a4781d5f-001a-006b-5975-4192c4000000"
+ "x-ms-request-id" : "86be854e-101a-010f-5409-449bd5000000"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share19304121?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4254911f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -52,9 +52,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d60-001a-006b-5a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be854f-101a-010f-5509-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT"
}
} ],
- "variables" : [ "share19304121" ]
+ "variables" : [ "share4254911f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getRootDirectoryDoesNotCreateADirectory.json b/storage/client/file/src/test/resources/session-records/getRootDirectoryDoesNotCreateADirectory.json
index ecd4380eb4e78..717a05c0d623c 100644
--- a/storage/client/file/src/test/resources/session-records/getRootDirectoryDoesNotCreateADirectory.json
+++ b/storage/client/file/src/test/resources/session-records/getRootDirectoryDoesNotCreateADirectory.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share33794f21?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share587664a2?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C9528C16E\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "ETag" : "\"0x8D71220AFFE5EED\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:29 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dc4-001a-006b-7d75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85bb-101a-010f-0a09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share33794f21/?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share587664a2/?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,17 +28,17 @@
"x-ms-server-encrypted" : "false",
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C953238AE\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "ETag" : "\"0x8D71220B003F0FC\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:29 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781dc6-001a-006b-7e75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85bd-101a-010f-0b09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share33794f21?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share587664a2?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781dc7-001a-006b-7f75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85be-101a-010f-0c09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
} ],
- "variables" : [ "share33794f21" ]
+ "variables" : [ "share587664a2" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getShareDoesNotCreateAShare.json b/storage/client/file/src/test/resources/session-records/getShareDoesNotCreateAShare.json
index 1b9367c3df656..b625e813139bc 100644
--- a/storage/client/file/src/test/resources/session-records/getShareDoesNotCreateAShare.json
+++ b/storage/client/file/src/test/resources/session-records/getShareDoesNotCreateAShare.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share96662a2c?restype=share&comp=stats",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share47041a6f?restype=share&comp=stats",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781fa7-001a-006b-0d75-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781fa7-001a-006b-0d75-4192c4000000\nTime:2019-07-23T16:43:46.2786384Z",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "x-ms-request-id" : "86be9b7e-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be9b7e-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:52.2972271Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share96662a2c&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,11 +31,2861 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fa9-001a-006b-0e75-4192c4000000",
- "Body" : "share96662a2c",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "x-ms-request-id" : "86be9b80-101a-010f-6d0a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b83-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b83-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:52.7576635Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b84-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b84-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:52.7906950Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b85-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b85-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:52.8207230Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b86-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b86-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:52.8517522Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b88-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b88-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:52.8837830Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b89-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b89-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:52.9148122Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b8a-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b8a-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:52.9448416Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b8b-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b8b-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:52.9768729Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b8c-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b8c-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:53.0079011Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b8d-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b8d-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:53.0399319Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b8e-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b8e-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:53.0719609Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b8f-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b8f-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:53.1039917Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b90-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b90-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:53.1360221Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b91-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b91-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:53.1670517Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b92-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b92-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:53.1970797Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b93-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b93-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:53.2281084Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b94-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b94-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:53.2601392Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b95-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b95-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:53.2911688Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b96-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b96-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:53.3231997Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b97-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b97-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:53.3532272Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b98-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b98-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:53.3852575Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b99-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b99-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:53.4172888Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b9a-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b9a-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:53.4483180Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b9b-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b9b-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:53.4833505Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b9c-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b9c-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:53.5123783Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b9d-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b9d-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:53.5414055Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b9e-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b9e-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:53.5724347Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b9f-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b9f-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:53.6034653Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ba0-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ba0-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:53.6354956Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ba1-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ba1-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:53.6665243Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ba2-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ba2-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:53.6985556Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:52 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ba3-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ba3-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:53.7295848Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ba5-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ba5-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:53.7616151Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ba6-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ba6-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:53.7926453Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ba7-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ba7-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:53.8236740Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ba8-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ba8-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:53.8567050Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ba9-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ba9-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:53.8887354Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9baa-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9baa-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:53.9197646Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bab-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bab-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:53.9497935Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bac-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bac-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:53.9798215Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bad-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bad-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:54.0118514Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bae-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bae-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:54.0418798Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9baf-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9baf-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:54.0749118Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb0-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb0-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:54.1069422Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb1-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb1-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:54.1379718Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb2-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb2-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:54.1740055Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb3-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb3-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:54.2020321Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb4-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb4-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:54.2320614Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb5-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb5-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:54.2610873Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb6-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb6-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:54.2901155Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb7-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb7-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:54.3201440Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb8-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb8-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:54.3501720Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bb9-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bb9-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:54.3781999Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bba-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bba-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:54.4072277Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bbb-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bbb-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:54.4362545Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bbc-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bbc-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:54.4642811Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bbd-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bbd-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:54.4943090Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bbe-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bbe-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:54.5223351Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bbf-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bbf-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:54.5523650Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc0-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc0-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:54.5813923Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc1-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc1-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:54.6124210Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc2-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc2-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:54.6444513Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc3-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc3-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:54.6744793Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc4-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc4-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:54.7075113Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:53 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc5-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc5-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:54.7385414Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc6-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc6-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:54.7705718Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc7-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc7-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:54.8016014Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc8-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc8-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:54.8336310Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bc9-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bc9-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:54.8646599Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bca-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bca-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:54.8966909Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bcb-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bcb-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:54.9277213Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bcc-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bcc-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:54.9607516Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bcd-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bcd-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:54.9917814Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bce-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bce-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:55.0218106Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bcf-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bcf-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:55.0498373Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd0-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd0-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:55.0798660Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd1-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd1-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:55.1078922Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd2-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd2-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:55.1379218Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd3-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd3-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:55.1669488Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd4-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd4-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:55.1969779Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd5-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd5-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:55.2270066Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd6-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd6-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:55.2580355Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd7-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd7-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:55.2940704Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd8-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd8-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:55.3271012Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bd9-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bd9-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:55.3621348Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bda-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bda-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:55.4131833Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bdb-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bdb-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:55.4452148Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bdc-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bdc-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:55.4772449Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bdd-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bdd-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:55.5072736Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bde-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bde-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:55.5373018Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bdf-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bdf-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:55.5683330Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be0-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be0-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:55.5963579Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be1-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be1-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:55.6283889Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be2-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be2-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:55.6604195Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be3-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be3-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:55.6934517Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:54 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be4-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be4-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:55.7234799Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be5-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be5-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:55.7545092Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be6-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be6-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:55.7865393Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be7-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be7-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:55.8165689Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be8-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be8-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:55.8485988Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9be9-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9be9-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:55.8786272Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bea-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bea-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:55.9106576Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9beb-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9beb-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:55.9416868Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bec-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bec-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:55.9727169Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bed-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bed-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:56.0047463Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bee-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bee-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:56.0357759Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bef-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bef-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:56.0678063Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bf0-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bf0-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:56.0998380Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bf1-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bf1-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:56.1318670Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bf2-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bf2-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:56.1699030Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bf3-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bf3-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:56.2029341Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bf4-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bf4-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:56.2349654Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bf6-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bf6-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:56.2659950Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bf7-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bf7-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:56.2980259Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bf8-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bf8-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:56.3280529Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bf9-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bf9-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:56.3600833Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bfa-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bfa-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:56.3891115Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bfb-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bfb-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:56.4191395Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bfc-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bfc-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:56.4481672Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bfd-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bfd-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:56.4791978Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bfe-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bfe-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:56.5092258Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9bff-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9bff-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:56.5442583Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c00-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c00-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:56.5742881Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c01-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c01-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:56.6053159Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c02-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c02-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:56.6333439Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c03-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c03-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:56.6613700Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c04-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c04-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:56.6913984Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:55 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c05-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c05-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:56.7204257Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c06-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c06-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:56.7504541Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c07-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c07-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:56.7804821Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c08-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c08-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:56.8125120Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c09-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c09-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:56.8425410Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c0a-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c0a-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:56.8725708Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c0b-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c0b-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:56.9036000Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c0c-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c0c-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:56.9346278Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c0d-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c0d-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:56.9676602Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c0e-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c0e-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:56.9976882Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c0f-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c0f-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:57.0347231Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c10-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c10-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:57.0667534Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c11-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c11-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:57.0987838Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c12-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c12-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:57.1318153Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c13-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c13-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:57.1618433Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c14-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c14-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:57.1958760Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c15-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c15-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:57.2239031Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c17-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c17-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:57.2659420Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c18-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c18-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:57.2949702Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c19-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c19-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:57.3249982Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c1a-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c1a-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:57.3540264Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c1b-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c1b-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:57.3840539Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c1c-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c1c-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:57.4160843Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share96662a2c" ]
+ "variables" : [ "share47041a6f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getSnapshotId.json b/storage/client/file/src/test/resources/session-records/getSnapshotId.json
index 02715f00c488a..0dd2c9ead61d2 100644
--- a/storage/client/file/src/test/resources/session-records/getSnapshotId.json
+++ b/storage/client/file/src/test/resources/session-records/getSnapshotId.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share69666dbd?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,36 +9,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C773F5043\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D7122092B0978D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d0e-001a-006b-1b75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT"
+ "x-ms-request-id" : "86be84fc-101a-010f-1809-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share69666dbd?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:40:26.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:25:40.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C773F5043\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D7122092B0978D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d10-001a-006b-1c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT"
+ "x-ms-request-id" : "86be84fe-101a-010f-1909-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share69666dbd?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,11 +50,11 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781d11-001a-006b-1d75-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781d11-001a-006b-1d75-4192c4000000\nTime:2019-07-23T16:40:26.7761389Z",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "x-ms-request-id" : "86be84ff-101a-010f-1a09-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be84ff-101a-010f-1a09-449bd5000000\nTime:2019-07-26T23:25:40.6435505Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share69666dbd" ]
+ "variables" : [ "share30341704" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getSnapshotMetadataDoesNotExistFromShareClient.json b/storage/client/file/src/test/resources/session-records/getSnapshotMetadataDoesNotExistFromShareClient.json
index b6fb1b9aab467..3101a79ef8be9 100644
--- a/storage/client/file/src/test/resources/session-records/getSnapshotMetadataDoesNotExistFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/getSnapshotMetadataDoesNotExistFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share053068d6?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share46368d8f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C79224B3F\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "ETag" : "\"0x8D71220944CF854\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d52-001a-006b-5075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be8541-101a-010f-4b09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share053068d6?sharesnapshot=snapshot&restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share46368d8f?sharesnapshot=snapshot&restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "445",
"StatusCode" : "400",
- "x-ms-request-id" : "3975b15b-b01a-003d-1a75-417ab4000000",
- "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:3975b15b-b01a-003d-1a75-417ab4000000\nTime:2019-07-23T16:40:29.8874826ZsharesnapshotsnapshotMust be in the specific snapshot date time format.",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "x-ms-request-id" : "65e43b0e-401a-011c-1d09-44ae34000000",
+ "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:65e43b0e-401a-011c-1d09-44ae34000000\nTime:2019-07-26T23:25:43.2878637ZsharesnapshotsnapshotMust be in the specific snapshot date time format.",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share053068d6?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share46368d8f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d54-001a-006b-5175-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be8543-101a-010f-4c09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
} ],
- "variables" : [ "share053068d6" ]
+ "variables" : [ "share46368d8f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getSnapshotMetadataFromShareClient.json b/storage/client/file/src/test/resources/session-records/getSnapshotMetadataFromShareClient.json
index 4b6cfa5a5c4ac..8fc42877e956c 100644
--- a/storage/client/file/src/test/resources/session-records/getSnapshotMetadataFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/getSnapshotMetadataFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share31872175?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,36 +9,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C78061FF3\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "ETag" : "\"0x8D71220936BB088\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d2c-001a-006b-3375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT"
+ "x-ms-request-id" : "86be851a-101a-010f-2e09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share31872175?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:40:28.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:25:41.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C78061FF3\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "ETag" : "\"0x8D71220936BB088\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d2e-001a-006b-3475-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT"
+ "x-ms-request-id" : "86be851c-101a-010f-2f09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share31872175?sharesnapshot=2019-07-23T16%3a40%3a28.0000000Z&restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?sharesnapshot=2019-07-26T23%3a25%3a41.0000000Z&restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -47,20 +47,20 @@
"x-ms-meta-test" : "metadata",
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT",
"x-ms-has-legal-hold" : "false",
"x-ms-share-quota" : "2",
- "ETag" : "\"0x8D70F8C78061FF3\"",
+ "ETag" : "\"0x8D71220936BB088\"",
"x-ms-has-immutability-policy" : "false",
"Content-Length" : "0",
- "x-ms-request-id" : "3975b156-b01a-003d-1875-417ab4000000"
+ "x-ms-request-id" : "65e43afd-401a-011c-1b09-44ae34000000"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share31872175?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -72,11 +72,11 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781d30-001a-006b-3575-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781d30-001a-006b-3575-4192c4000000\nTime:2019-07-23T16:40:28.1841446Z",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "x-ms-request-id" : "86be851d-101a-010f-3009-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be851d-101a-010f-3009-449bd5000000\nTime:2019-07-26T23:25:41.9017445Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share31872175" ]
+ "variables" : [ "share55306c18" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getSnapshotPropertiesDoesNotExist.json b/storage/client/file/src/test/resources/session-records/getSnapshotPropertiesDoesNotExist.json
index f2da43b8c1a4d..130cc2745db93 100644
--- a/storage/client/file/src/test/resources/session-records/getSnapshotPropertiesDoesNotExist.json
+++ b/storage/client/file/src/test/resources/session-records/getSnapshotPropertiesDoesNotExist.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share29111ff1?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31089dd6?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C9574301E\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "ETag" : "\"0x8D71220B0300264\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dcf-001a-006b-0575-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85c6-101a-010f-1209-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share29111ff1?sharesnapshot=snapshot&restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31089dd6?sharesnapshot=snapshot&restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "445",
"StatusCode" : "400",
- "x-ms-request-id" : "3975b18f-b01a-003d-2675-417ab4000000",
- "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:3975b18f-b01a-003d-2675-417ab4000000\nTime:2019-07-23T16:41:17.4022825ZsharesnapshotsnapshotMust be in the specific snapshot date time format.",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "x-ms-request-id" : "65e43b8b-401a-011c-6409-44ae34000000",
+ "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:65e43b8b-401a-011c-6409-44ae34000000\nTime:2019-07-26T23:26:30.0760942ZsharesnapshotsnapshotMust be in the specific snapshot date time format.",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share29111ff1?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31089dd6?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781dd1-001a-006b-0675-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85c8-101a-010f-1309-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
} ],
- "variables" : [ "share29111ff1" ]
+ "variables" : [ "share31089dd6" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getSnapshotPropertiesFromShareClient.json b/storage/client/file/src/test/resources/session-records/getSnapshotPropertiesFromShareClient.json
index 8cac81d604f3c..932a4613f7bb6 100644
--- a/storage/client/file/src/test/resources/session-records/getSnapshotPropertiesFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/getSnapshotPropertiesFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share49629d81?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,36 +9,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C9603B94A\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:18 GMT",
+ "ETag" : "\"0x8D71220B0A6FD0D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781de3-001a-006b-1475-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85e5-101a-010f-2a09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share49629d81?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:41:18.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:26:30.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C95D7CB00\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:18 GMT",
+ "ETag" : "\"0x8D71220B029D700\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781de5-001a-006b-1575-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85e7-101a-010f-2b09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share49629d81?sharesnapshot=2019-07-23T16%3a41%3a18.0000000Z&restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?sharesnapshot=2019-07-26T23%3a26%3a30.0000000Z&restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -47,20 +47,20 @@
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"x-ms-meta-snapshot" : "metadata",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:18 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"x-ms-has-legal-hold" : "false",
"x-ms-share-quota" : "2",
- "ETag" : "\"0x8D70F8C95D7CB00\"",
+ "ETag" : "\"0x8D71220B029D700\"",
"x-ms-has-immutability-policy" : "false",
"Content-Length" : "0",
- "x-ms-request-id" : "3975b194-b01a-003d-2875-417ab4000000"
+ "x-ms-request-id" : "65e43b91-401a-011c-6709-44ae34000000"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share49629d81?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -72,11 +72,11 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781de6-001a-006b-1675-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781de6-001a-006b-1675-4192c4000000\nTime:2019-07-23T16:41:18.4480203Z",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "x-ms-request-id" : "86be85ea-101a-010f-2e09-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be85ea-101a-010f-2e09-449bd5000000\nTime:2019-07-26T23:26:30.9342823Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share49629d81" ]
+ "variables" : [ "share1471432d" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getStats.json b/storage/client/file/src/test/resources/session-records/getStats.json
index b4ecd38b1caf6..6a6f25af02e25 100644
--- a/storage/client/file/src/test/resources/session-records/getStats.json
+++ b/storage/client/file/src/test/resources/session-records/getStats.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share67188f15?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share03180d4a?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C963EAA38\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:18 GMT",
+ "ETag" : "\"0x8D71220B0D36F0D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:31 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781deb-001a-006b-1a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85ef-101a-010f-3209-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share67188f15?restype=share&comp=stats",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share03180d4a?restype=share&comp=stats",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -30,14 +30,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781ded-001a-006b-1b75-4192c4000000",
+ "x-ms-request-id" : "86be85f1-101a-010f-3309-449bd5000000",
"Body" : "0",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share67188f15?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share03180d4a?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -48,9 +48,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781dee-001a-006b-1c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:18 GMT"
+ "x-ms-request-id" : "86be85f2-101a-010f-3409-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
} ],
- "variables" : [ "share67188f15" ]
+ "variables" : [ "share03180d4a" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getStatsDoesNotExist.json b/storage/client/file/src/test/resources/session-records/getStatsDoesNotExist.json
index 97ecc310dd26f..451ae58ab7d68 100644
--- a/storage/client/file/src/test/resources/session-records/getStatsDoesNotExist.json
+++ b/storage/client/file/src/test/resources/session-records/getStatsDoesNotExist.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share840508c1?restype=share&comp=stats",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share311838e8?restype=share&comp=stats",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781db4-001a-006b-7175-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781db4-001a-006b-7175-4192c4000000\nTime:2019-07-23T16:41:16.1013399Z",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85ab-101a-010f-7e09-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be85ab-101a-010f-7e09-449bd5000000\nTime:2019-07-26T23:26:29.1836174Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share840508c1?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share311838e8?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781db6-001a-006b-7275-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781db6-001a-006b-7275-4192c4000000\nTime:2019-07-23T16:41:16.1493733Z",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85ad-101a-010f-7f09-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be85ad-101a-010f-7f09-449bd5000000\nTime:2019-07-26T23:26:29.2136463Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share840508c1" ]
+ "variables" : [ "share311838e8" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/getSubDirectoryClient.json b/storage/client/file/src/test/resources/session-records/getSubDirectoryClient.json
index 786a8d1614b5d..0ed3be4ac7ca7 100644
--- a/storage/client/file/src/test/resources/session-records/getSubDirectoryClient.json
+++ b/storage/client/file/src/test/resources/session-records/getSubDirectoryClient.json
@@ -1,4 +1,4 @@
{
"networkCallRecords" : [ ],
- "variables" : [ "directory092514" ]
+ "variables" : [ "directory52787f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listFilesAndDirectoriesFromDirClient.json b/storage/client/file/src/test/resources/session-records/listFilesAndDirectoriesFromDirClient.json
index 8102f80f00dd5..85ce195fd7a6d 100644
--- a/storage/client/file/src/test/resources/session-records/listFilesAndDirectoriesFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/listFilesAndDirectoriesFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5D8325F\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D712211034C53E\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ece-001a-006b-2475-4192c4000000",
+ "x-ms-request-id" : "86be9431-101a-010f-1b09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397%2fdirectory6013970?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e%2fdirectory03228e0?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,18 +28,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5E04A24\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D71221103B084F\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ecf-001a-006b-2575-4192c4000000",
+ "x-ms-request-id" : "86be9432-101a-010f-1c09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397%2fsamelayer02223a0",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e%2fsamelayer68781d0",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -47,18 +47,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5E83ACF\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D7122110417277\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ed0-001a-006b-2675-4192c4000000",
+ "x-ms-request-id" : "86be9433-101a-010f-1d09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:10 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397%2fdirectory6013970%2fnextlayer57757b0",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e%2fdirectory03228e0%2fnextlayer2731040",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -66,18 +66,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5F13D27\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D7122110493C85\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ed1-001a-006b-2775-4192c4000000",
+ "x-ms-request-id" : "86be9434-101a-010f-1e09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397%2fdirectory6013971?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e%2fdirectory03228e1?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -85,18 +85,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5F92DCE\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D71221104FCDCE\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ed2-001a-006b-2875-4192c4000000",
+ "x-ms-request-id" : "86be9435-101a-010f-1f09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397%2fsamelayer02223a01",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e%2fsamelayer68781d01",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -104,18 +104,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB6011E86\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "ETag" : "\"0x8D7122110554D59\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ed3-001a-006b-2975-4192c4000000",
+ "x-ms-request-id" : "86be9436-101a-010f-2009-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397%2fdirectory6013971%2fnextlayer57757b01",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e%2fdirectory03228e1%2fnextlayer27310401",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -123,18 +123,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB608E814\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D71221105AF3FC\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ed4-001a-006b-2a75-4192c4000000",
+ "x-ms-request-id" : "86be9438-101a-010f-2109-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397%2fdirectory6013972?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e%2fdirectory03228e2?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -142,18 +142,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB610B1B3\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D7122110609AA8\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ed5-001a-006b-2b75-4192c4000000",
+ "x-ms-request-id" : "86be9439-101a-010f-2209-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397%2fsamelayer02223a012",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e%2fsamelayer68781d012",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -161,18 +161,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB618F08D\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D712211065F321\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ed6-001a-006b-2c75-4192c4000000",
+ "x-ms-request-id" : "86be943a-101a-010f-2309-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397%2fdirectory6013972%2fnextlayer57757b012",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e%2fdirectory03228e2%2fnextlayer273104012",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -180,18 +180,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB620BA31\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:12 GMT",
+ "ETag" : "\"0x8D71221106C0F1F\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:11 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ed7-001a-006b-2d75-4192c4000000",
+ "x-ms-request-id" : "86be943b-101a-010f-2409-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory601397?restype=directory&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory03228e?restype=directory&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -202,11 +202,11 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781ed8-001a-006b-2e75-4192c4000000",
- "Body" : "directory6013970directory6013971directory6013972samelayer02223a01024samelayer02223a011024samelayer02223a0121024",
- "Date" : "Tue, 23 Jul 2019 16:42:11 GMT",
+ "x-ms-request-id" : "86be943c-101a-010f-2509-449bd5000000",
+ "Body" : "directory03228e0directory03228e1directory03228e2samelayer68781d01024samelayer68781d011024samelayer68781d0121024",
+ "Date" : "Fri, 26 Jul 2019 23:29:10 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "directory601397", "samelayer02223a", "nextlayer57757b" ]
+ "variables" : [ "directory03228e", "samelayer68781d", "nextlayer273104" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listHandlesFromFileClient.json b/storage/client/file/src/test/resources/session-records/listHandlesFromFileClient.json
index a8429ac169638..d0c38d92dad9a 100644
--- a/storage/client/file/src/test/resources/session-records/listHandlesFromFileClient.json
+++ b/storage/client/file/src/test/resources/session-records/listHandlesFromFileClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile80711456",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile6780920e",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3E02EEBF\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "ETag" : "\"0x8D7122059E5D851\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c25-001a-006b-2b75-4192c4000000",
+ "x-ms-request-id" : "86be83ef-101a-010f-0809-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile80711456?comp=listhandles",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile6780920e?comp=listhandles",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,11 +31,11 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781c27-001a-006b-2c75-4192c4000000",
+ "x-ms-request-id" : "86be83f1-101a-010f-0a09-449bd5000000",
"Body" : "",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "file80711456" ]
+ "variables" : [ "file6780920e" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listRangesFromFileClient.json b/storage/client/file/src/test/resources/session-records/listRangesFromFileClient.json
index 26f25a74de99f..0258f6b75992c 100644
--- a/storage/client/file/src/test/resources/session-records/listRangesFromFileClient.json
+++ b/storage/client/file/src/test/resources/session-records/listRangesFromFileClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile053136bd",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile01662653",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3E1408CE\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "ETag" : "\"0x8D7122059F1C213\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c28-001a-006b-2d75-4192c4000000",
+ "x-ms-request-id" : "86be83f2-101a-010f-0b09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile053136bd?comp=range",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile01662653?comp=range",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -29,19 +29,19 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3E1DCE9C\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "ETag" : "\"0x8D7122059F8EFBF\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c29-001a-006b-2e75-4192c4000000",
+ "x-ms-request-id" : "86be83f3-101a-010f-0c09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"Content-MD5" : "wh+Wm18D0z1D4E+PE252gg=="
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile053136bd?comp=rangelist",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile01662653?comp=rangelist",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -51,15 +51,15 @@
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"x-ms-content-length" : "512",
- "ETag" : "\"0x8D70F8C3E1DCE9C\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "ETag" : "\"0x8D7122059F8EFBF\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781c2a-001a-006b-2f75-4192c4000000",
+ "x-ms-request-id" : "86be83f4-101a-010f-0d09-449bd5000000",
"Body" : "0511",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "file053136bd" ]
+ "variables" : [ "file01662653" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listShares.json b/storage/client/file/src/test/resources/session-records/listShares.json
index 9b4198a90038a..f094176180100 100644
--- a/storage/client/file/src/test/resources/session-records/listShares.json
+++ b/storage/client/file/src/test/resources/session-records/listShares.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share334220300?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72642ec80?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEDF8BA1A\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "ETag" : "\"0x8D712214974C175\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:47 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f99-001a-006b-0475-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT"
+ "x-ms-request-id" : "86be9ad8-101a-010f-4c0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share334220301?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72642ec81?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -27,17 +27,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEE0083B4\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "ETag" : "\"0x8D71221497A4106\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:47 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f9c-001a-006b-0675-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT"
+ "x-ms-request-id" : "86be9ada-101a-010f-4d0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share334220302?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72642ec82?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -45,17 +45,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEE084D4E\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "ETag" : "\"0x8D71221497F9985\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:47 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f9f-001a-006b-0775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT"
+ "x-ms-request-id" : "86be9adc-101a-010f-4e0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share33422030&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?prefix=share72642ec8&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -66,14 +66,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fa2-001a-006b-0875-4192c4000000",
- "Body" : "share33422030share334220300Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CEDF8BA1A\"2share334220301Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CEE0083B4\"2share334220302Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CEE084D4E\"2",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "x-ms-request-id" : "86be9ade-101a-010f-4f0a-449bd5000000",
+ "Body" : "share72642ec8share72642ec80Fri, 26 Jul 2019 23:30:47 GMT\"0x8D712214974C175\"2share72642ec81Fri, 26 Jul 2019 23:30:47 GMT\"0x8D71221497A4106\"2share72642ec82Fri, 26 Jul 2019 23:30:47 GMT\"0x8D71221497F9985\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share33422030&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -84,14 +84,2136 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fa3-001a-006b-0975-4192c4000000",
- "Body" : "share33422030share334220300Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CEDF8BA1A\"2share334220301Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CEE0083B4\"2share334220302Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CEE084D4E\"2",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "x-ms-request-id" : "86be9adf-101a-010f-500a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72642ec80Fri, 26 Jul 2019 23:30:47 GMT\"0x8D712214974C175\"2share72642ec81Fri, 26 Jul 2019 23:30:47 GMT\"0x8D71221497A4106\"2share72642ec82Fri, 26 Jul 2019 23:30:47 GMT\"0x8D71221497F9985\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share334220300?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae0-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae0-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:47.4095889Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae1-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae1-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:47.4416202Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae2-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae2-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:47.4696458Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae3-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae3-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:47.4996738Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae4-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae4-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:47.5277013Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae5-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae5-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:47.5577298Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae6-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae6-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:47.5887589Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae7-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae7-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:47.6207893Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae8-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae8-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:47.6518185Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ae9-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ae9-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:47.6808453Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:46 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aeb-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aeb-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:47.7108747Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aec-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aec-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:47.7399019Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aed-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aed-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:47.7699309Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aee-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aee-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:47.8049638Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aef-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aef-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:47.8349918Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af0-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af0-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:47.8660201Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af1-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af1-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:47.8980523Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af2-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af2-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:47.9290810Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af3-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af3-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:47.9601106Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af4-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af4-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:47.9921405Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af5-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af5-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:48.0221690Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af6-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af6-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:48.0541993Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af7-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af7-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:48.0862297Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af8-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af8-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:48.1182600Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9af9-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9af9-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:48.1512916Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9afa-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9afa-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:48.1833229Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9afb-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9afb-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:48.2133504Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9afc-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9afc-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:48.2453803Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9afd-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9afd-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:48.2764108Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9afe-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9afe-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:48.3074396Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9aff-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9aff-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:48.3394690Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b00-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b00-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:48.3694984Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b01-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b01-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:48.4025294Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b02-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b02-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:48.4335586Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b03-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b03-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:48.4645882Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b04-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b04-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:48.4956179Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b05-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b05-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:48.5276478Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b06-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b06-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:48.5576762Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b07-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b07-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:48.5877052Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b08-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b08-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:48.6197350Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b09-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b09-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:48.6517649Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b0a-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b0a-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:48.6827946Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:47 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b0b-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b0b-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:48.7148249Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b0d-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b0d-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:48.7538622Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b0e-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b0e-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:48.7818887Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b0f-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b0f-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:48.8109165Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b10-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b10-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:48.8409449Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b11-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b11-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:48.8699722Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b12-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b12-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:48.9000020Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b13-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b13-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:48.9300291Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b14-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b14-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:48.9630602Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b15-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b15-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:48.9930886Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b16-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b16-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:49.0251190Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b17-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b17-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:49.0561486Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b18-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b18-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:49.0871792Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b19-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b19-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:49.1162060Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b1a-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b1a-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:49.1472347Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b1b-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b1b-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:49.1792655Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b1c-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b1c-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:49.2102942Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b1d-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b1d-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:49.2423251Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b1e-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b1e-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:49.2743563Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b1f-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b1f-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:49.3053846Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b20-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b20-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:49.3364138Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b21-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b21-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:49.3684446Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b22-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b22-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:49.3984730Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b23-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b23-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:49.4295027Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b24-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b24-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:49.4615335Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b25-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b25-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:49.4925622Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b26-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b26-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:49.5245935Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b27-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b27-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:49.5546215Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b28-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b28-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:49.5896554Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b29-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b29-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:49.6206841Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b2a-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b2a-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:49.6527158Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b2b-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b2b-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:49.6827424Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:48 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b2c-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b2c-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:49.7147742Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b2d-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b2d-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:49.7468032Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b2e-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b2e-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:49.7778328Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b2f-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b2f-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:49.8078617Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b30-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b30-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:49.8398928Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b31-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b31-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:49.8709207Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b32-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b32-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:49.9009499Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b33-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b33-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:49.9309785Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b34-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b34-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:49.9590062Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b35-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b35-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:49.9890348Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b36-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b36-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:50.0200647Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b37-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b37-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:50.0500933Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b38-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b38-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:50.0961359Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b39-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b39-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:50.1291690Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b3a-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b3a-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:50.1611982Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b3b-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b3b-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:50.1912264Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b3c-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b3c-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:50.2242586Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b3d-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b3d-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:50.2562901Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b3e-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b3e-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:50.2883206Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b3f-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b3f-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:50.3183498Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b40-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b40-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:50.3503789Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b41-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b41-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:50.3804081Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b42-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b42-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:50.4124377Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b43-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b43-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:50.4434671Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b44-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b44-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:50.4754981Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b45-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b45-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:50.5085298Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b46-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b46-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:50.5405609Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b47-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b47-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:50.5725914Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b48-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b48-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:50.6026201Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b49-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b49-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:50.6356504Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b4a-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b4a-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:50.6656800Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b4b-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b4b-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:50.6967089Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:49 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b4c-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b4c-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:50.7287409Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b4d-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b4d-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:50.7597693Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b4e-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b4e-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:50.7918004Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b4f-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b4f-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:50.8218285Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72642ec80?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86be9b50-101a-010f-3f0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72642ec81?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86be9b51-101a-010f-400a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72642ec82?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -102,12 +2224,354 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781fa4-001a-006b-0a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT"
+ "x-ms-request-id" : "86be9b52-101a-010f-410a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b53-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b53-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:50.9689681Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b54-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b54-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:51.0009985Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b55-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b55-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:51.0340296Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b56-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b56-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:51.0650587Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b57-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b57-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:51.0930858Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b58-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b58-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:51.1231142Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b59-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b59-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:51.1551446Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b5a-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b5a-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:51.1851730Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b5b-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b5b-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:51.2152010Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b5d-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b5d-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:51.2482326Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b5e-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b5e-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:51.2772603Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b5f-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b5f-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:51.3062871Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b60-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b60-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:51.3343146Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b61-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b61-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:51.3673457Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b62-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b62-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:51.3993760Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b63-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b63-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:51.4304052Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b64-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b64-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:51.4614358Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b65-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b65-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:51.4924635Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share334220301?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -115,15 +2579,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
"retry-after" : "0",
- "Content-Length" : "0",
- "StatusCode" : "202",
- "x-ms-request-id" : "a4781fa5-001a-006b-0b75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT"
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b66-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b66-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:51.5244944Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share334220302?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -131,12 +2598,395 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
"retry-after" : "0",
- "Content-Length" : "0",
- "StatusCode" : "202",
- "x-ms-request-id" : "a4781fa6-001a-006b-0c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT"
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b67-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b67-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:51.5565243Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b68-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b68-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:51.5975638Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b69-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b69-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:51.6285944Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b6a-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b6a-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:51.6596227Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b6b-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b6b-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:51.6906518Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:50 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b6c-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b6c-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:51.7216819Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b6d-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b6d-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:51.7707282Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b6e-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b6e-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:51.8147690Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b6f-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b6f-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:51.8498038Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b70-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b70-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:51.8808325Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b71-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b71-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:51.9108638Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b74-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b74-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:51.9428909Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b75-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b75-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:51.9729203Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b76-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b76-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:52.0029492Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b77-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b77-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:52.0349786Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b78-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b78-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:52.0680092Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b79-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b79-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:52.0990398Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b7a-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b7a-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:52.1300694Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b7b-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b7b-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:52.1610977Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b7c-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b7c-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:52.1941297Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9b7d-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9b7d-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:52.2251593Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:51 GMT",
+ "Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share33422030" ]
+ "variables" : [ "share72642ec8" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listSharesIncludeMetadata.json b/storage/client/file/src/test/resources/session-records/listSharesIncludeMetadata.json
index 74e4401568be0..a3b469ff3dea5 100644
--- a/storage/client/file/src/test/resources/session-records/listSharesIncludeMetadata.json
+++ b/storage/client/file/src/test/resources/session-records/listSharesIncludeMetadata.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share116742420?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share03967fd10?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEEFF5D8E\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "ETag" : "\"0x8D7122158A2BAA3\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:31:12 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781fc4-001a-006b-2375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9e10-101a-010f-630a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share116742421?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share03967fd11?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -27,17 +27,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEF077557\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "ETag" : "\"0x8D7122158A83A2D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:31:12 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781fc6-001a-006b-2475-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9e12-101a-010f-640a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share116742422?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share03967fd12?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -45,17 +45,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEF0F3EF5\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "ETag" : "\"0x8D7122158AD4484\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:31:12 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781fc8-001a-006b-2575-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9e14-101a-010f-650a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share11674242&include=metadata&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?prefix=share03967fd1&include=metadata&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -66,14 +66,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fca-001a-006b-2675-4192c4000000",
- "Body" : "share11674242share116742420Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEEFF5D8E\"2metadatashare116742421Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEF077557\"2share116742422Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEF0F3EF5\"2metadata",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "x-ms-request-id" : "86be9e16-101a-010f-660a-449bd5000000",
+ "Body" : "share03967fd1share03967fd10Fri, 26 Jul 2019 23:31:12 GMT\"0x8D7122158A2BAA3\"2metadatashare03967fd11Fri, 26 Jul 2019 23:31:12 GMT\"0x8D7122158A83A2D\"2share03967fd12Fri, 26 Jul 2019 23:31:12 GMT\"0x8D7122158AD4484\"2metadata",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share11674242&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -84,14 +84,90 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fcb-001a-006b-2775-4192c4000000",
- "Body" : "share11674242share116742420Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEEFF5D8E\"2share116742421Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEF077557\"2share116742422Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEF0F3EF5\"2",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "x-ms-request-id" : "86be9e18-101a-010f-670a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share03967fd10Fri, 26 Jul 2019 23:31:12 GMT\"0x8D7122158A2BAA3\"2share03967fd11Fri, 26 Jul 2019 23:31:12 GMT\"0x8D7122158A83A2D\"2share03967fd12Fri, 26 Jul 2019 23:31:12 GMT\"0x8D7122158AD4484\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share116742420?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e19-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e19-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:31:12.9317535Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e1a-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e1a-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:31:12.9667857Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e1b-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e1b-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:12.9988159Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e1c-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e1c-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:13.0278444Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share03967fd10?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -102,12 +178,12 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781fcc-001a-006b-2875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9e1d-101a-010f-6c0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share116742421?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share03967fd11?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -118,12 +194,12 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781fcd-001a-006b-2975-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9e1e-101a-010f-6d0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share116742422?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share03967fd12?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -134,9 +210,2821 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781fce-001a-006b-2a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9e22-101a-010f-6f0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e23-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e23-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:13.1669751Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e24-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e24-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:13.1980036Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e25-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e25-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:13.2280328Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e26-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e26-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:13.2600634Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e27-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e27-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:13.2900907Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e28-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e28-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:13.3201194Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e29-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e29-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:13.3511480Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e2a-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e2a-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:13.3821774Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e2b-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e2b-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:31:13.4102028Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e2c-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e2c-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:31:13.4422334Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e2d-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e2d-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:31:13.4782678Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e2e-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e2e-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:31:13.5092973Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e2f-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e2f-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:31:13.5433288Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e30-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e30-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:31:13.5733566Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e31-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e31-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:31:13.6043861Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e32-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e32-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:31:13.6404195Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e33-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e33-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:31:13.6704482Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e34-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e34-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:31:13.7004765Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e35-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e35-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:31:13.7315059Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:12 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e36-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e36-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:31:13.7625349Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e38-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e38-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:31:13.7915629Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e39-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e39-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:31:13.8185877Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e3a-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e3a-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:31:13.8466145Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e3b-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e3b-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:31:13.8756416Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e3c-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e3c-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:31:13.9066710Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e3d-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e3d-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:31:13.9377000Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e3e-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e3e-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:31:13.9667271Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e3f-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e3f-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:31:13.9967554Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e40-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e40-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:31:14.0267836Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e41-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e41-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:31:14.0578126Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e42-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e42-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:31:14.0918451Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e43-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e43-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:31:14.1218729Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e45-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e45-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:31:14.1539035Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e46-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e46-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:31:14.1849325Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e47-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e47-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:31:14.2149603Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e48-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e48-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:31:14.2449894Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e49-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e49-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:31:14.2760189Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e4a-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e4a-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:31:14.3090488Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e4b-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e4b-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:31:14.3410799Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e4c-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e4c-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:31:14.3711077Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e4d-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e4d-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:31:14.3991341Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e4e-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e4e-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:31:14.4281611Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e4f-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e4f-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:31:14.4591915Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e50-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e50-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:31:14.4892198Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e51-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e51-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:31:14.5212485Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e52-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e52-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:31:14.5512777Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e53-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e53-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:31:14.5803048Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e54-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e54-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:31:14.6113333Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e55-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e55-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:31:14.6413616Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e56-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e56-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:31:14.6733922Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e57-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e57-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:31:14.7034204Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e58-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e58-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:31:14.7324480Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:13 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e59-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e59-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:31:14.7614751Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e5a-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e5a-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:31:14.7905022Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e5b-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e5b-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:31:14.8195307Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e5c-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e5c-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:31:14.8505582Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e5d-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e5d-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:31:14.8815881Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e5e-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e5e-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:31:14.9126166Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e5f-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e5f-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:31:14.9436461Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e60-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e60-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:31:14.9756762Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e61-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e61-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:31:15.0067057Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e62-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e62-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:31:15.0387367Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e63-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e63-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:31:15.0707664Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e64-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e64-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:31:15.1017949Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e65-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e65-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:31:15.1328262Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e66-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e66-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:31:15.1678580Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e67-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e67-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:31:15.1968847Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e68-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e68-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:31:15.2279141Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e69-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e69-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:31:15.2589445Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e6a-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e6a-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:31:15.2899734Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e6b-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e6b-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:31:15.3220026Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e6c-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e6c-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:31:15.3520318Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e6d-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e6d-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:31:15.3830603Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e6e-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e6e-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:31:15.4140898Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e6f-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e6f-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:31:15.4471206Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e70-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e70-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:31:15.4771480Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e71-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e71-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:31:15.5081788Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e72-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e72-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:31:15.5402075Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e73-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e73-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:31:15.5702358Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e74-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e74-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:31:15.6022678Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e75-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e75-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:31:15.6423046Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e76-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e76-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:31:15.6743343Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e77-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e77-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:31:15.7043630Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e78-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e78-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:31:15.7343912Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:14 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e79-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e79-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:31:15.7654216Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e7a-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e7a-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:31:15.8064581Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e7b-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e7b-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:31:15.8364869Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e7c-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e7c-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:31:15.8675163Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e7d-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e7d-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:31:15.8985457Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e7e-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e7e-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:31:15.9295747Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e7f-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e7f-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:31:15.9606046Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e80-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e80-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:31:15.9906319Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e81-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e81-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:31:16.0216614Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e82-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e82-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:31:16.0546922Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e83-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e83-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:31:16.0847200Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e84-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e84-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:16.1157499Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e85-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e85-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:16.1467789Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e86-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e86-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:16.1778088Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e87-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e87-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:16.2088382Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e88-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e88-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:16.2378644Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e89-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e89-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:16.2668929Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e8b-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e8b-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:16.2969207Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e8c-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e8c-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:16.3279487Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e8d-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e8d-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:16.3599793Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e8e-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e8e-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:16.3900085Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e8f-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e8f-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:16.4210375Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e90-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e90-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:16.4530672Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e91-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e91-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:31:16.4840961Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e92-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e92-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:16.5211308Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e93-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e93-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:31:16.5531618Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e94-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e94-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:31:16.5962017Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e95-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e95-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:31:16.6272306Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e96-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e96-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:16.6582601Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e97-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e97-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:16.6902902Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e98-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e98-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:31:16.7203189Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:15 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e99-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e99-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:31:16.7513488Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e9a-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e9a-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:31:16.7803755Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e9b-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e9b-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:31:16.8124056Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e9c-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e9c-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:31:16.8434341Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e9d-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e9d-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:31:16.8754647Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e9e-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e9e-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:31:16.9064946Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e9f-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e9f-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:16.9375236Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ea0-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ea0-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:16.9685526Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ea1-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ea1-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:31:16.9995811Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ea2-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ea2-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:31:17.0306105Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ea3-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ea3-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:31:17.0626411Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ea4-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ea4-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:31:17.1006769Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ea5-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ea5-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:17.1327075Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ea6-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ea6-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:17.1697417Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ea7-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ea7-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:17.2007707Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ea8-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ea8-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:17.2318001Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eaa-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eaa-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:17.2638298Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eab-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eab-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:17.2948588Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eac-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eac-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:17.3258882Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eae-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eae-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:17.3579188Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eaf-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eaf-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:31:17.3879475Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb0-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb0-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:31:17.4189765Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb1-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb1-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:31:17.4500050Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb2-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb2-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:31:17.4810344Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb3-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb3-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:31:17.5110636Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb4-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb4-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:31:17.5430933Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb5-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb5-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:31:17.5731220Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb6-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb6-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:31:17.6041510Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb7-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb7-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:31:17.6351795Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb8-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb8-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:31:17.6662085Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eb9-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eb9-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:31:17.6962372Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eba-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eba-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:31:17.7272657Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:16 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ebc-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ebc-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:31:17.7572963Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share11674242" ]
+ "variables" : [ "share03967fd1" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listSharesIncludeMetadataAndSnapshots.json b/storage/client/file/src/test/resources/session-records/listSharesIncludeMetadataAndSnapshots.json
index fc52365263ae3..8b6a62a421f9f 100644
--- a/storage/client/file/src/test/resources/session-records/listSharesIncludeMetadataAndSnapshots.json
+++ b/storage/client/file/src/test/resources/session-records/listSharesIncludeMetadataAndSnapshots.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share112342ce0?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,36 +9,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CED6BA295\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "ETag" : "\"0x8D71221436B8EC5\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:37 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f84-001a-006b-7375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT"
+ "x-ms-request-id" : "86be998e-101a-010f-130a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share112342ce0?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:43:44.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:30:37.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CED6BA295\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "ETag" : "\"0x8D71221436B8EC5\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:37 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f86-001a-006b-7475-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT"
+ "x-ms-request-id" : "86be9990-101a-010f-140a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share112342ce1?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f1?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -46,17 +46,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CED7C4768\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "ETag" : "\"0x8D712214377C6B2\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:37 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f87-001a-006b-7575-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT"
+ "x-ms-request-id" : "86be9991-101a-010f-150a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share112342ce2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -64,36 +64,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CED8745EA\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "ETag" : "\"0x8D71221437D464D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:37 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f89-001a-006b-7675-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT"
+ "x-ms-request-id" : "86be9993-101a-010f-160a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share112342ce2?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:43:45.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:30:37.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CED8745EA\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "ETag" : "\"0x8D71221437D464D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:37 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f8b-001a-006b-7775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT"
+ "x-ms-request-id" : "86be9995-101a-010f-170a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share112342ce&include=metadata%2csnapshots&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?prefix=share50527b7f&include=metadata%2csnapshots&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -104,14 +104,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f8c-001a-006b-7875-4192c4000000",
- "Body" : "share112342ceshare112342ce02019-07-23T16:43:44.0000000ZTue, 23 Jul 2019 16:43:44 GMT\"0x8D70F8CED6BA295\"2metadatashare112342ce0Tue, 23 Jul 2019 16:43:44 GMT\"0x8D70F8CED6BA295\"2metadatashare112342ce1Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CED7C4768\"2share112342ce22019-07-23T16:43:45.0000000ZTue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CED8745EA\"2metadatashare112342ce2Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CED8745EA\"2metadata",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "x-ms-request-id" : "86be9997-101a-010f-180a-449bd5000000",
+ "Body" : "share50527b7fshare50527b7f02019-07-26T23:30:37.0000000ZFri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2metadatashare50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2metadatashare50527b7f1Fri, 26 Jul 2019 23:30:37 GMT\"0x8D712214377C6B2\"2share50527b7f22019-07-26T23:30:37.0000000ZFri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2metadatashare50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2metadata",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share112342ce&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -122,14 +122,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f8d-001a-006b-7975-4192c4000000",
- "Body" : "share112342ceshare112342ce0Tue, 23 Jul 2019 16:43:44 GMT\"0x8D70F8CED6BA295\"2share112342ce1Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CED7C4768\"2share112342ce2Tue, 23 Jul 2019 16:43:45 GMT\"0x8D70F8CED8745EA\"2",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "x-ms-request-id" : "86be9998-101a-010f-190a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f1Fri, 26 Jul 2019 23:30:37 GMT\"0x8D712214377C6B2\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share112342ce0?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -141,14 +141,14 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781f8e-001a-006b-7a75-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781f8e-001a-006b-7a75-4192c4000000\nTime:2019-07-23T16:43:45.3519776Z",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "x-ms-request-id" : "86be9999-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9999-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:37.4371249Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share112342ce1?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -156,15 +156,2827 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be999a-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be999a-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:37.4701564Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be999b-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be999b-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:37.5001849Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be999c-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be999c-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:37.5292112Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be999d-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be999d-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:37.5582389Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be999e-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be999e-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:37.5882679Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be999f-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be999f-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:37.6172956Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99a0-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99a0-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:37.6493269Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99a1-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99a1-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:37.6823566Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99a3-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99a3-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:37.7153886Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99a4-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99a4-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:37.7464177Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99a5-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99a5-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:37.7774479Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99a6-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99a6-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:37.8084761Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99a7-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99a7-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:37.8385059Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99a8-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99a8-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:37.8705354Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99a9-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99a9-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:37.9025657Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99aa-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99aa-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:37.9325937Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ab-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ab-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:37.9646250Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ac-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ac-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:37.9956537Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ad-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ad-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:38.0276841Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ae-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ae-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:38.0607161Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99af-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99af-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:38.0927460Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b0-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b0-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:38.1247758Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b1-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b1-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:38.1588081Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b2-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b2-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:38.1938420Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b3-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b3-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:38.2378828Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b4-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b4-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:38.2669105Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b5-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b5-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:38.2979402Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b6-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b6-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:38.3299701Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b7-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b7-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:38.3599995Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b8-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b8-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:38.3940312Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99b9-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99b9-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:38.4260616Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ba-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ba-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:38.4600943Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99bb-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99bb-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:38.4921247Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99bc-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99bc-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:38.5241546Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99bd-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99bd-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:38.5551837Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99be-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99be-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:38.5872141Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99bf-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99bf-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:38.6182437Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99c0-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99c0-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:38.6492738Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99c1-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99c1-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:38.6803030Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:37 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99c3-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99c3-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:38.7123334Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99c4-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99c4-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:38.7433621Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99c5-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99c5-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:38.7743926Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99c6-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99c6-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:38.8054209Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99c7-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99c7-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:38.8364510Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99c9-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99c9-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:38.8684813Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ca-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ca-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:38.9015119Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99cb-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99cb-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:38.9325425Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99cc-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99cc-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:38.9645729Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99cd-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99cd-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:38.9956030Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ce-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ce-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:39.0256300Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d0-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d0-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:39.0576599Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d1-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d1-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:39.0886896Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d2-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d2-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:39.1197187Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d3-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d3-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:39.1507498Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d4-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d4-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:39.1817785Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d5-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d5-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:39.2128072Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d6-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d6-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:39.2448399Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d7-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d7-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:39.2768679Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d8-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d8-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:39.3068959Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99d9-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99d9-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:39.3379265Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99da-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99da-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:39.3669561Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99db-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99db-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:39.3939791Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99dc-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99dc-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:39.4250097Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99dd-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99dd-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:39.4530349Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99de-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99de-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:39.4850657Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99df-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99df-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:39.5160948Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99e0-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99e0-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:39.5471250Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99e1-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99e1-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:39.5791553Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99e2-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99e2-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:39.6091828Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99e3-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99e3-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:39.6422144Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99e4-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99e4-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:39.6722424Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:38 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99e5-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99e5-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:39.7042727Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86be99e6-101a-010f-630a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99e7-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99e7-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:39.7743387Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99e8-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99e8-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:39.8053692Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99e9-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99e9-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:39.8363993Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ea-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ea-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:39.8664269Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99eb-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99eb-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:39.8974565Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ec-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ec-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:39.9274849Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ed-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ed-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:39.9585151Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ee-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ee-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:39.9895452Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ef-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ef-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:40.0215741Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f0-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f0-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:40.0526033Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f1-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f1-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:40.0846336Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f2-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f2-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:40.1146621Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f3-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f3-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:40.1476941Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f4-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f4-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:40.1797240Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f5-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f5-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:40.2127551Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f6-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f6-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:40.2477885Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f7-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f7-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:40.2798193Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f8-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f8-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:40.3118501Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99f9-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99f9-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:40.3438791Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99fa-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99fa-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:40.3749083Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99fb-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99fb-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:40.4049372Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99fc-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99fc-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:40.4369671Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99fe-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99fe-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:40.4689974Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be99ff-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be99ff-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:40.5060351Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a00-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a00-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:40.5380636Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a01-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a01-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:40.5670909Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a02-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a02-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:40.6001219Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a03-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a03-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:40.6291501Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a04-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a04-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:40.6601788Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a05-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a05-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:40.6902073Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:39 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a06-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a06-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:40.7192350Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a07-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a07-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:40.7492630Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a08-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a08-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:40.7812939Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a09-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a09-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:40.8133239Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a0a-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a0a-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:40.8453549Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a0b-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a0b-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:40.8763847Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a0c-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a0c-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:40.9084153Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a0d-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a0d-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:40.9394447Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a0e-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a0e-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:40.9704740Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a0f-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a0f-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:41.0015048Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a10-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a10-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:41.0345356Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a11-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a11-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:41.0665662Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a12-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a12-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:41.0975960Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a13-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a13-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:41.1286250Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a14-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a14-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:41.1606550Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a15-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a15-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:41.1916854Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a17-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a17-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:41.2217135Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a18-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a18-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:41.2537441Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a19-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a19-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:41.2837737Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a1a-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a1a-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:41.3148026Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a1b-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a1b-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:41.3478353Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a1c-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a1c-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:41.3778625Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a1d-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a1d-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:41.4088919Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a1e-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a1e-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:41.4399236Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a1f-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a1f-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:41.4709530Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a20-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a20-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:41.4999805Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a21-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a21-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:41.5280067Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a22-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a22-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:41.5600387Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a23-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a23-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:41.5930681Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
"retry-after" : "0",
- "Content-Length" : "0",
- "StatusCode" : "202",
- "x-ms-request-id" : "a4781f8f-001a-006b-7b75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT"
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a25-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a25-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:41.6240980Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a26-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a26-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:41.6561290Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a27-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a27-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:41.6861576Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:40 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a28-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a28-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:41.7161858Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a29-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a29-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:41.7452142Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a2a-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a2a-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:41.7762431Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a2b-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a2b-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:41.8072734Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a2c-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a2c-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:41.8393037Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a2d-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a2d-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:41.8693317Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a2e-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a2e-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:41.9073673Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a2f-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a2f-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:41.9383974Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a30-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a30-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:41.9694261Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a31-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a31-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:42.0004558Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a32-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a32-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:42.0324875Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a33-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a33-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:42.0655167Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a34-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a34-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:42.0965468Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9a35-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a35-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:42.1275765Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
+ "Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share112342ce2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -176,11 +2988,11 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781f90-001a-006b-7c75-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781f90-001a-006b-7c75-4192c4000000\nTime:2019-07-23T16:43:45.4540500Z",
- "Date" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "x-ms-request-id" : "86be9a36-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9a36-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:42.1596064Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:41 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share112342ce" ]
+ "variables" : [ "share50527b7f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listSharesIncludeSnapshots.json b/storage/client/file/src/test/resources/session-records/listSharesIncludeSnapshots.json
index 9274ad655d14a..1658c0bf4558f 100644
--- a/storage/client/file/src/test/resources/session-records/listSharesIncludeSnapshots.json
+++ b/storage/client/file/src/test/resources/session-records/listSharesIncludeSnapshots.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share305309dc0?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,36 +9,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEE49A7FE\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "ETag" : "\"0x8D712214F98FCCC\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:57 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781faa-001a-006b-0f75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT"
+ "x-ms-request-id" : "86be9c1d-101a-010f-040a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share305309dc0?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:43:46.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:30:57.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEE49A7FE\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "ETag" : "\"0x8D712214F98FCCC\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:57 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781fac-001a-006b-1075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT"
+ "x-ms-request-id" : "86be9c1f-101a-010f-050a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share305309dc1?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c1?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -46,17 +46,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEE5A4CDF\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "ETag" : "\"0x8D712214FA534B9\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:57 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781fad-001a-006b-1175-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT"
+ "x-ms-request-id" : "86be9c20-101a-010f-060a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share305309dc2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -64,36 +64,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEE6CC6C8\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "ETag" : "\"0x8D712214FAB29A7\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:57 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781faf-001a-006b-1275-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT"
+ "x-ms-request-id" : "86be9c22-101a-010f-070a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share305309dc2?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:43:46.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:30:57.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEE6CC6C8\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "ETag" : "\"0x8D712214FAB29A7\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:57 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781fb1-001a-006b-1375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT"
+ "x-ms-request-id" : "86be9c24-101a-010f-080a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share305309dc&include=snapshots&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?prefix=share0458013c&include=snapshots&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -104,14 +104,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fb2-001a-006b-1475-4192c4000000",
- "Body" : "share305309dcshare305309dc02019-07-23T16:43:46.0000000ZTue, 23 Jul 2019 16:43:46 GMT\"0x8D70F8CEE49A7FE\"2share305309dc0Tue, 23 Jul 2019 16:43:46 GMT\"0x8D70F8CEE49A7FE\"2share305309dc1Tue, 23 Jul 2019 16:43:46 GMT\"0x8D70F8CEE5A4CDF\"2share305309dc22019-07-23T16:43:46.0000000ZTue, 23 Jul 2019 16:43:46 GMT\"0x8D70F8CEE6CC6C8\"2share305309dc2Tue, 23 Jul 2019 16:43:46 GMT\"0x8D70F8CEE6CC6C8\"2",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "x-ms-request-id" : "86be9c25-101a-010f-090a-449bd5000000",
+ "Body" : "share0458013cshare0458013c02019-07-26T23:30:57.0000000ZFri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c1Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FA534B9\"2share0458013c22019-07-26T23:30:57.0000000ZFri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:56 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share305309dc&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -122,14 +122,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fb3-001a-006b-1575-4192c4000000",
- "Body" : "share305309dcshare305309dc0Tue, 23 Jul 2019 16:43:46 GMT\"0x8D70F8CEE49A7FE\"2share305309dc1Tue, 23 Jul 2019 16:43:46 GMT\"0x8D70F8CEE5A4CDF\"2share305309dc2Tue, 23 Jul 2019 16:43:46 GMT\"0x8D70F8CEE6CC6C8\"2",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "x-ms-request-id" : "86be9c26-101a-010f-0a0a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c1Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FA534B9\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share305309dc0?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -141,14 +141,90 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781fb4-001a-006b-1675-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781fb4-001a-006b-1675-4192c4000000\nTime:2019-07-23T16:43:46.8250278Z",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "x-ms-request-id" : "86be9c28-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c28-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:57.8524978Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share305309dc1?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c29-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c29-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:57.8835284Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c2a-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c2a-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:57.9155588Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c2b-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c2b-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:57.9455858Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c2c-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c2c-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:57.9766159Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c1?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -159,12 +235,2786 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781fb5-001a-006b-1775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT"
+ "x-ms-request-id" : "86be9c2d-101a-010f-100a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c2e-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c2e-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:58.0446800Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c2f-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c2f-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:58.0777110Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c30-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c30-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:58.1087407Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c31-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c31-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:58.1387705Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c32-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c32-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:58.1708000Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c33-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c33-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:58.2028308Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c34-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c34-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:58.2348602Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c35-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c35-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:58.2668901Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c36-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c36-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:58.3019235Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c37-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c37-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:58.3329536Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c38-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c38-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:58.3639828Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c39-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c39-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:58.3960127Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c3a-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c3a-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:58.4270423Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c3b-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c3b-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:58.4580720Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c3c-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c3c-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:58.4891021Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c3d-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c3d-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:58.5271386Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c3e-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c3e-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:58.5571675Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c3f-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c3f-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:58.5881953Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c40-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c40-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:58.6212268Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c41-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c41-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:58.6502541Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c42-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c42-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:58.6822849Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c43-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c43-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:58.7133146Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:57 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c45-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c45-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:58.7443437Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c46-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c46-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:58.7763741Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c47-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c47-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:58.8074037Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c48-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c48-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:58.8394342Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c49-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c49-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:58.8694624Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c4a-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c4a-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:58.9004913Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c4b-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c4b-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:58.9315217Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c4c-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c4c-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:58.9615498Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c4d-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c4d-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:58.9935818Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c4e-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c4e-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:59.0246112Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c4f-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c4f-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:59.0616454Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c50-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c50-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:59.0926752Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c51-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c51-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:59.1237060Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c52-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c52-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:59.1577370Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c53-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c53-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:59.1897690Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c54-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c54-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:59.2207970Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c55-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c55-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:59.2518278Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c56-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c56-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:59.2838579Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c57-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c57-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:59.3168891Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c58-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c58-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:59.3489192Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c59-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c59-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:59.3799500Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c5a-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c5a-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:59.4099782Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c5b-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c5b-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:59.4380054Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c5c-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c5c-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:59.4670324Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c5d-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c5d-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:59.4960603Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c5e-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c5e-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:59.5240866Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c5f-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c5f-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:59.5541157Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c60-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c60-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:59.5841453Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c61-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c61-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:59.6151742Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c62-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c62-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:59.6462036Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c63-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c63-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:59.6782337Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c64-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c64-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:59.7092640Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:58 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c65-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c65-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:59.7402938Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c66-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c66-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:59.7723249Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c67-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c67-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:59.8023535Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c68-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c68-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:59.8343835Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c69-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c69-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:59.8654117Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c6a-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c6a-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:59.8974426Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c6b-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c6b-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:59.9284722Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c6c-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c6c-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:59.9585002Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c6d-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c6d-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:59.9895294Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c6e-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c6e-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:00.0275654Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c6f-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c6f-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:00.0595958Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c70-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c70-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:00.0896242Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c71-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c71-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:00.1196527Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c72-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c72-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:00.1496816Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c73-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c73-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:00.1787093Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c74-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c74-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:00.2107392Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c75-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c75-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:00.2417689Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c76-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c76-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:00.2748004Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c77-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c77-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:00.3048293Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c78-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c78-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:00.3328545Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c79-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c79-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:00.3608815Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c7a-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c7a-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:31:00.3899093Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c7b-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c7b-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:00.4189365Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c7c-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c7c-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:31:00.4509669Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c7d-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c7d-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:31:00.4809963Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c7e-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c7e-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:31:00.5100226Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c7f-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c7f-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:00.5390513Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c80-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c80-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:00.5670774Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c81-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c81-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:31:00.5951035Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c82-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c82-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:31:00.6251324Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c83-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c83-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:31:00.6541597Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c84-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c84-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:31:00.6841886Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c85-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c85-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:31:00.7142166Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:59 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c86-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c86-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:31:00.7462470Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c87-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c87-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:31:00.7792780Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c88-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c88-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:00.8083053Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c89-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c89-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:00.8373335Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c8a-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c8a-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:31:00.8663608Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c8b-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c8b-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:31:00.8953881Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c8e-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c8e-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:00.9254179Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c8f-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c8f-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:00.9534440Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c90-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c90-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:00.9814701Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c91-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c91-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:01.0104979Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c92-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c92-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:01.0395261Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c93-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c93-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:01.0665500Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c94-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c94-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:01.0965785Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c95-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c95-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:01.1266084Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c96-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c96-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:31:01.1586392Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c97-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c97-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:31:01.1876651Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c98-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c98-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:31:01.2176935Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c9a-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c9a-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:31:01.2497239Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c9b-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c9b-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:31:01.2817551Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c9c-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c9c-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:31:01.3147858Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c9d-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c9d-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:31:01.3458149Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c9e-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c9e-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:31:01.3758443Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9c9f-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9c9f-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:31:01.4048707Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca0-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca0-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:31:01.4318970Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca1-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca1-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:31:01.4599231Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca2-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca2-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:31:01.4889508Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca3-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca3-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:31:01.5189797Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca4-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca4-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:31:01.5490077Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca5-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca5-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:31:01.5810381Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca6-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca6-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:31:01.6180734Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca7-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca7-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:31:01.6511049Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca8-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca8-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:31:01.6821346Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ca9-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ca9-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:31:01.7141645Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:00 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9caa-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9caa-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:31:01.7451936Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cab-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cab-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:31:01.7762238Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cac-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cac-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:31:01.8082532Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cad-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cad-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:31:01.8372814Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cae-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cae-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:31:01.8653070Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9caf-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9caf-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:31:01.8943357Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb0-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb0-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:31:01.9223618Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb1-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb1-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:31:01.9493881Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb2-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb2-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:31:01.9794156Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb3-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb3-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:31:02.0104448Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb4-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb4-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:31:02.0404732Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb5-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb5-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:31:02.0695005Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb6-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb6-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:31:02.1105396Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb7-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb7-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:31:02.1415688Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb8-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb8-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:31:02.1715982Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cb9-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cb9-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:31:02.2026269Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cba-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cba-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:31:02.2316542Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cbb-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cbb-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:31:02.2646867Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cbc-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cbc-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:31:02.2957149Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cbd-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cbd-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:31:02.3257443Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cbe-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cbe-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:31:02.3537704Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cbf-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cbf-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:31:02.3837984Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cc0-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cc0-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:31:02.4178311Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cc1-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cc1-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:31:02.4488603Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cc2-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cc2-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:31:02.4788883Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cc3-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cc3-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:31:02.5079160Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
+ "Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share305309dc2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -176,11 +3026,11 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781fb6-001a-006b-1875-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781fb6-001a-006b-1875-4192c4000000\nTime:2019-07-23T16:43:46.9331058Z",
- "Date" : "Tue, 23 Jul 2019 16:43:45 GMT",
+ "x-ms-request-id" : "86be9cc4-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cc4-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:31:02.5379449Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share305309dc" ]
+ "variables" : [ "share0458013c" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listSharesInvalidMaxResults.json b/storage/client/file/src/test/resources/session-records/listSharesInvalidMaxResults.json
index 82d415fce89ee..dffabaa55ceea 100644
--- a/storage/client/file/src/test/resources/session-records/listSharesInvalidMaxResults.json
+++ b/storage/client/file/src/test/resources/session-records/listSharesInvalidMaxResults.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share557594ed&maxresults=-1&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?prefix=share8137397f&maxresults=-1&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "461",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781fe0-001a-006b-3775-4192c4000000",
- "Body" : "OutOfRangeQueryParameterValue
One of the query parameters specified in the request URI is outside the permissible range.\nRequestId:a4781fe0-001a-006b-3775-4192c4000000\nTime:2019-07-23T16:43:48.6823538Zmaxresults-112147483647",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86bea22a-101a-010f-220a-449bd5000000",
+ "Body" : "OutOfRangeQueryParameterValue
One of the query parameters specified in the request URI is outside the permissible range.\nRequestId:86bea22a-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:32:27.8067617Zmaxresults-112147483647",
+ "Date" : "Fri, 26 Jul 2019 23:32:26 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share557594ed&maxresults=0&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?prefix=share8137397f&maxresults=0&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,14 +32,14 @@
"retry-after" : "0",
"Content-Length" : "460",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781fe1-001a-006b-3875-4192c4000000",
- "Body" : "OutOfRangeQueryParameterValue
One of the query parameters specified in the request URI is outside the permissible range.\nRequestId:a4781fe1-001a-006b-3875-4192c4000000\nTime:2019-07-23T16:43:48.7303877Zmaxresults012147483647",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86bea22c-101a-010f-230a-449bd5000000",
+ "Body" : "OutOfRangeQueryParameterValue
One of the query parameters specified in the request URI is outside the permissible range.\nRequestId:86bea22c-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:32:27.8347879Zmaxresults012147483647",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share557594ed&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,11 +50,2899 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fe2-001a-006b-3975-4192c4000000",
- "Body" : "share557594ed",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86bea22d-101a-010f-240a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea22e-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea22e-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:32:27.9518999Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea22f-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea22f-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:32:27.9829298Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea230-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea230-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:32:28.0149594Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea231-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea231-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:32:28.0449894Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea232-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea232-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:32:28.0770195Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea233-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea233-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:32:28.1090501Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea234-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea234-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:32:28.1390787Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea235-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea235-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:32:28.1691079Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea236-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea236-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:32:28.2001368Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea237-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea237-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:32:28.2311662Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea238-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea238-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:32:28.2611948Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea239-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea239-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:32:28.2922242Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea23a-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea23a-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:32:28.3222542Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea23b-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea23b-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:32:28.3542843Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea23c-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea23c-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:32:28.3853142Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea23d-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea23d-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:32:28.4163431Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea23e-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea23e-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:32:28.4453705Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea23f-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea23f-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:32:28.4764004Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea240-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea240-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:32:28.5074312Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea241-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea241-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:32:28.5384605Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea242-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea242-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:32:28.5684887Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea243-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea243-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:32:28.6025209Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea244-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea244-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:32:28.6335505Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea245-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea245-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:32:28.6645793Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea246-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea246-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:32:28.6946086Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea247-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea247-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:32:28.7226343Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea248-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea248-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:32:28.7526623Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea249-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea249-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:32:28.7816909Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea24a-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea24a-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:32:28.8117189Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea24b-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea24b-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:32:28.8407457Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea24d-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea24d-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:32:28.8757792Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea24e-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea24e-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:32:28.9058086Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea24f-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea24f-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:32:28.9338347Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea250-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea250-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:32:28.9638640Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea251-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea251-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:32:28.9928899Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea252-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea252-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:32:29.0219177Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea253-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea253-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:32:29.0549487Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea254-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea254-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:32:29.0869791Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea255-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea255-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:32:29.1180092Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea256-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea256-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:32:29.1490379Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea257-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea257-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:32:29.1800671Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea258-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea258-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:32:29.2090953Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea259-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea259-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:32:29.2391228Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea25a-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea25a-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:32:29.2681515Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea25b-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea25b-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:32:29.2981804Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea25c-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea25c-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:32:29.3282079Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea25d-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea25d-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:32:29.3592371Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea25e-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea25e-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:32:29.3902677Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea25f-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea25f-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:32:29.4212959Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea260-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea260-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:32:29.4553296Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea261-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea261-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:32:29.4853571Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea262-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea262-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:32:29.5153851Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea263-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea263-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:32:29.5474150Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea264-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea264-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:32:29.5764422Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea265-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea265-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:32:29.6054705Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea266-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea266-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:32:29.6344977Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea267-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea267-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:32:29.6645262Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea268-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea268-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:32:29.6945556Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea269-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea269-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:32:29.7265864Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea26a-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea26a-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:32:29.7576151Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea26b-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea26b-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:32:29.7886438Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea26c-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea26c-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:32:29.8196735Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea26d-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea26d-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:32:29.8517038Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea26e-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea26e-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:32:29.8817323Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea26f-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea26f-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:32:29.9097584Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea270-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea270-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:32:29.9407908Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea271-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea271-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:32:29.9708165Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea272-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea272-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:32:30.0008454Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea273-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea273-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:32:30.0308738Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea274-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea274-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:32:30.0629042Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea275-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea275-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:32:30.0939334Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea276-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea276-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:32:30.1249625Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea277-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea277-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:32:30.1559936Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea278-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea278-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:32:30.1850204Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea279-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea279-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:32:30.2140472Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea27a-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea27a-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:32:30.2430759Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea27b-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea27b-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:32:30.2721036Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea27c-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea27c-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:32:30.3031314Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea27d-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea27d-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:32:30.3341610Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea27e-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea27e-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:32:30.3671926Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea27f-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea27f-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:32:30.3982213Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea280-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea280-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:32:30.4282502Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea281-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea281-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:32:30.4602815Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea282-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea282-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:32:30.4903095Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea283-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea283-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:32:30.5203370Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea284-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea284-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:32:30.5563725Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea285-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea285-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:32:30.5874017Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea286-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea286-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:32:30.6174297Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea287-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea287-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:32:30.6484598Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea288-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea288-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:32:30.6794881Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea289-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea289-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:32:30.7095184Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea28a-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea28a-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:32:30.7385443Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea28b-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea28b-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:32:30.7685727Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea28c-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea28c-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:32:30.7996019Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea28d-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea28d-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:32:30.8316327Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea28e-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea28e-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:32:30.8616612Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea290-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea290-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:32:30.8936920Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea291-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea291-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:32:30.9237204Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea294-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea294-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:32:30.9527477Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea295-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea295-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:32:30.9827766Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea296-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea296-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:32:31.0148070Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea297-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea297-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:32:31.0458362Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea298-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea298-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:32:31.0768658Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea299-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea299-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:32:31.1078940Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea29a-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea29a-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:32:31.1389242Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea29b-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea29b-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:32:31.1679519Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea29c-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea29c-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:32:31.1969796Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea29d-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea29d-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:32:31.2270072Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea29e-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea29e-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:32:31.2570352Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea29f-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea29f-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:32:31.2870645Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2a0-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2a0-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:32:31.3170949Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2a1-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2a1-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:32:31.3481226Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2a3-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2a3-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:32:31.3791518Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2a4-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2a4-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:32:31.4101824Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2a5-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2a5-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:32:31.4402104Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2a6-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2a6-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:32:31.4702388Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2a7-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2a7-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:32:31.5002673Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2a8-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2a8-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:32:31.5312965Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2a9-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2a9-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:32:31.5623266Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2aa-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2aa-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:32:31.5933548Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2ab-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2ab-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:32:31.6223826Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2ac-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2ac-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:32:31.6514103Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2ad-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2ad-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:32:31.6804371Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2ae-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2ae-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:32:31.7104665Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2af-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2af-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:32:31.7404945Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b0-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b0-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:32:31.7695213Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b1-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b1-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:32:31.8005514Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b2-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b2-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:32:31.8295796Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b3-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b3-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:32:31.8586060Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b4-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b4-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:32:31.8886358Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b5-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b5-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:32:31.9186629Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b6-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b6-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:32:31.9496930Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b7-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b7-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:32:31.9797224Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b8-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b8-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:32:32.0097494Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2b9-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2b9-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:32:32.0417793Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2ba-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2ba-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:32:32.0758116Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2bb-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2bb-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:32:32.1098438Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2bc-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2bc-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:32:32.1418746Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2bd-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2bd-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:32:32.1729038Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2be-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2be-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:32:32.2039339Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2bf-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2bf-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:32:32.2339610Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2c0-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2c0-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:32:32.2659918Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2c1-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2c1-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:32:32.2970214Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2c2-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2c2-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:32:32.3280511Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2c3-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2c3-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:32:32.3600805Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2c4-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2c4-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:32:32.3921118Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2c5-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2c5-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:32:32.4221398Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2c6-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2c6-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:32:32.4521682Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2c8-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2c8-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:32:32.4821976Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2c9-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2c9-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:32:32.5132273Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2ca-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2ca-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:32:32.5432543Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea2cb-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea2cb-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:32:32.5742836Z",
+ "Date" : "Fri, 26 Jul 2019 23:32:31 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share557594ed" ]
+ "variables" : [ "share8137397f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listSharesWithLimit.json b/storage/client/file/src/test/resources/session-records/listSharesWithLimit.json
index ba78ebd77bdae..df46217c2be67 100644
--- a/storage/client/file/src/test/resources/session-records/listSharesWithLimit.json
+++ b/storage/client/file/src/test/resources/session-records/listSharesWithLimit.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share058285ff0?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share541296b30?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CECCDBF15\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "ETag" : "\"0x8D71221319AA619\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:07 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f6c-001a-006b-6075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:42 GMT"
+ "x-ms-request-id" : "86be95c9-101a-010f-7b0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share058285ff1?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share541296b31?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -27,17 +27,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CECD62507\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "ETag" : "\"0x8D7122131A025A6\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:07 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f6e-001a-006b-6175-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:42 GMT"
+ "x-ms-request-id" : "86be95cb-101a-010f-7c0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share058285ff2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share541296b32?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -45,17 +45,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CECDDC795\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:44 GMT",
+ "ETag" : "\"0x8D7122131A57E29\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:30:07 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781f70-001a-006b-6275-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT"
+ "x-ms-request-id" : "86be95cd-101a-010f-7d0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share058285ff&maxresults=2&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?prefix=share541296b3&maxresults=2&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -66,14 +66,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f72-001a-006b-6375-4192c4000000",
- "Body" : "share058285ff2share058285ff0Tue, 23 Jul 2019 16:43:43 GMT\"0x8D70F8CECCDBF15\"2share058285ff1Tue, 23 Jul 2019 16:43:43 GMT\"0x8D70F8CECD62507\"2/sima/share058285ff2",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "x-ms-request-id" : "86be95cf-101a-010f-7e0a-449bd5000000",
+ "Body" : "share541296b32share541296b30Fri, 26 Jul 2019 23:30:07 GMT\"0x8D71221319AA619\"2share541296b31Fri, 26 Jul 2019 23:30:07 GMT\"0x8D7122131A025A6\"2/azstoragesdkaccount/share541296b32",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share058285ff&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -84,14 +84,1528 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f73-001a-006b-6475-4192c4000000",
- "Body" : "share058285ffshare058285ff0Tue, 23 Jul 2019 16:43:43 GMT\"0x8D70F8CECCDBF15\"2share058285ff1Tue, 23 Jul 2019 16:43:43 GMT\"0x8D70F8CECD62507\"2share058285ff2Tue, 23 Jul 2019 16:43:44 GMT\"0x8D70F8CECDDC795\"2",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "x-ms-request-id" : "86be95d0-101a-010f-7f0a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share541296b30Fri, 26 Jul 2019 23:30:07 GMT\"0x8D71221319AA619\"2share541296b31Fri, 26 Jul 2019 23:30:07 GMT\"0x8D7122131A025A6\"2share541296b32Fri, 26 Jul 2019 23:30:07 GMT\"0x8D7122131A57E29\"2share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share058285ff0?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95d1-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95d1-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:07.4516636Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95d2-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95d2-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:07.4846932Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95d3-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95d3-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:07.5157233Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95d4-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95d4-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:07.5467525Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95d5-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95d5-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:07.5787824Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95d6-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95d6-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:07.6088118Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95d7-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95d7-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:07.6398400Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95d8-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95d8-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:07.6718718Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95da-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95da-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:07.7029010Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95db-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95db-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:07.7329290Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95dc-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95dc-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:07.7659601Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95dd-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95dd-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:07.7969899Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95de-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95de-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:07.8290214Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95df-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95df-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:07.8610515Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95e3-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95e3-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:07.8930816Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95e4-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95e4-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:07.9241124Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95e5-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95e5-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:07.9551408Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95e6-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95e6-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:07.9891737Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95e7-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95e7-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:08.0192015Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95e8-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95e8-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:08.0512320Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95e9-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95e9-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:08.0812612Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95f6-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95f6-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:08.1303082Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95f7-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95f7-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:08.1623378Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95f8-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95f8-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:08.1933677Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95f9-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95f9-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:30:08.2233963Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95fa-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95fa-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:30:08.2554269Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95fb-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95fb-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:08.2924624Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95fc-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95fc-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:08.3244930Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95fd-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95fd-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:08.3575248Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95fe-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95fe-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:08.3885541Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be95ff-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be95ff-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:08.4205847Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9600-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9600-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:08.4536169Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9601-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9601-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:08.4846454Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9602-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9602-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:08.5156766Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9603-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9603-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:08.5497081Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9604-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9604-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:08.5807375Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9605-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9605-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:08.6127681Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9606-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9606-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:08.6427967Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9608-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9608-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:08.6748282Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9609-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9609-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:08.7058567Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be960a-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be960a-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:08.7368861Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be960b-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be960b-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:08.7689170Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be960c-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be960c-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:08.8009474Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be960d-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be960d-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:08.8349806Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be960e-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be960e-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:08.8660107Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be960f-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be960f-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:08.8990417Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9610-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9610-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:08.9300700Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9611-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9611-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:08.9620999Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9612-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9612-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:08.9941302Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9613-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9613-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:09.0271613Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9614-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9614-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:09.0611935Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9615-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9615-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:09.1072376Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9616-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9616-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:09.1382673Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9617-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9617-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:09.1682953Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9618-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9618-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:09.1993258Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9619-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9619-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:09.2333572Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be961a-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be961a-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:09.2643868Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be961b-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be961b-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:09.2954155Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be961c-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be961c-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:09.3274473Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be961d-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be961d-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:09.3574762Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be961e-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be961e-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:09.3895047Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be961f-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be961f-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:09.4215355Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9620-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9620-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:09.4535654Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9621-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9621-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:09.4855967Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9622-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9622-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:09.5166254Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9623-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9623-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:09.5476560Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9624-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9624-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:09.5786847Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9625-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9625-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:09.6097143Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9626-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9626-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:09.6407430Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9627-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9627-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:09.6747757Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9628-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9628-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:09.7058049Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9629-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9629-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:09.7398376Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be962a-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be962a-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:09.7728701Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be962b-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be962b-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:09.8028971Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be962c-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be962c-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:09.8399325Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be962d-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be962d-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:09.8719638Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be962e-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be962e-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:09.9049934Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be962f-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be962f-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:09.9380245Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share541296b30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86be9630-101a-010f-4f0a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share541296b31?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86be9631-101a-010f-500a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share541296b32?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -102,12 +1616,924 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781f74-001a-006b-6575-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT"
+ "x-ms-request-id" : "86be9632-101a-010f-510a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9633-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9633-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:10.1001791Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9634-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9634-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:10.1362128Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9635-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9635-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:10.1732481Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9636-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9636-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:10.2052780Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9637-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9637-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:10.2383100Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9638-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9638-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:10.2683385Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9639-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9639-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:10.2993676Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be963a-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be963a-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:10.3283945Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be963b-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be963b-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:10.3584234Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be963c-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be963c-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:10.3874507Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be963d-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be963d-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:10.4164789Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be963e-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be963e-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:10.4475090Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9640-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9640-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:10.4775360Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9641-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9641-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:10.5065633Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9642-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9642-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:10.5385941Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9643-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9643-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:10.5716257Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9644-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9644-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:10.6046563Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9645-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9645-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:10.6386895Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9646-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9646-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:10.6687174Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9647-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9647-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:10.6967440Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9648-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9648-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:10.7297755Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9649-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9649-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:10.7608047Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be964a-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be964a-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:10.7928351Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be964b-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be964b-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:10.8248654Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be964c-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be964c-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:10.8588977Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be964d-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be964d-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:10.8909280Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be964e-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be964e-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:10.9219577Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be964f-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be964f-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:10.9529868Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9650-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9650-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:10.9850167Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9651-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9651-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:11.0160464Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9652-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9652-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:11.0500782Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9653-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9653-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:11.0871140Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9654-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9654-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:11.1231476Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9655-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9655-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:11.1551780Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9657-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9657-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:11.1882095Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9658-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9658-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:11.2192387Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9659-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9659-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:11.2532714Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be965a-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be965a-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:11.2843006Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be965b-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be965b-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:11.3153302Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be965c-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be965c-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:11.3463603Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be965d-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be965d-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:11.3783898Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be965e-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be965e-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:11.4094189Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be965f-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be965f-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:11.4414493Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9660-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9660-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:11.4724789Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9661-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9661-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:11.5035090Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9663-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9663-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:11.5345377Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9664-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9664-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:11.5665690Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9665-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9665-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:11.5975977Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share058285ff1?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -115,15 +2541,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
"retry-after" : "0",
- "Content-Length" : "0",
- "StatusCode" : "202",
- "x-ms-request-id" : "a4781f75-001a-006b-6675-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT"
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9666-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9666-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:11.6276276Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:10 GMT",
+ "Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share058285ff2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -131,12 +2560,395 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
"retry-after" : "0",
- "Content-Length" : "0",
- "StatusCode" : "202",
- "x-ms-request-id" : "a4781f76-001a-006b-6775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT"
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9667-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9667-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:30:11.6596561Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9668-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9668-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:11.6906862Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9669-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9669-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:11.7227170Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be966a-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be966a-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:11.7537462Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be966b-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be966b-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:11.7847753Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be966c-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be966c-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:11.8158041Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be966d-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be966d-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:11.8478349Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be966e-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be966e-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:11.8828683Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be966f-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be966f-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:11.9158984Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9670-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9670-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:11.9469286Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9671-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9671-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:11.9819620Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9672-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9672-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:12.0149931Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9673-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9673-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:12.0470229Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9674-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9674-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:12.0790538Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9675-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9675-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:12.1190917Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9676-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9676-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:12.1521228Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9677-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9677-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:12.1851552Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9678-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9678-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:12.2161840Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9679-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9679-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:12.2472136Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be967a-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be967a-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:12.2782423Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be967b-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be967b-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:12.3172805Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:11 GMT",
+ "Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share058285ff" ]
+ "variables" : [ "share541296b3" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/listSharesWithPrefix.json b/storage/client/file/src/test/resources/session-records/listSharesWithPrefix.json
index eec9f6affa44f..70371052c5185 100644
--- a/storage/client/file/src/test/resources/session-records/listSharesWithPrefix.json
+++ b/storage/client/file/src/test/resources/session-records/listSharesWithPrefix.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share98599009prefix0?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share412786c6prefix0?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEEA9B3D7\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "ETag" : "\"0x8D7122152A2B3ED\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:31:02 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781fb7-001a-006b-1975-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9cc5-101a-010f-260a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share985990091?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share412786c61?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -27,17 +27,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEEB48B44\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "ETag" : "\"0x8D7122152A79721\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:31:02 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781fb9-001a-006b-1a75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9cc7-101a-010f-270a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share98599009prefix2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share412786c6prefix2?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -45,17 +45,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CEEBC7BF7\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "ETag" : "\"0x8D7122152ACA176\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:31:02 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781fbb-001a-006b-1b75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9cc9-101a-010f-280a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share98599009prefix&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?prefix=share412786c6prefix&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -66,14 +66,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fbd-001a-006b-1c75-4192c4000000",
- "Body" : "share98599009prefixshare98599009prefix0Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEEA9B3D7\"2share98599009prefix2Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEEBC7BF7\"2",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "x-ms-request-id" : "86be9ccb-101a-010f-290a-449bd5000000",
+ "Body" : "share412786c6prefixshare412786c6prefix0Fri, 26 Jul 2019 23:31:02 GMT\"0x8D7122152A2B3ED\"2share412786c6prefix2Fri, 26 Jul 2019 23:31:02 GMT\"0x8D7122152ACA176\"2",
+ "Date" : "Fri, 26 Jul 2019 23:31:01 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share98599009&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -84,14 +84,1186 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fbe-001a-006b-1d75-4192c4000000",
- "Body" : "share98599009share985990091Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEEB48B44\"2share98599009prefix0Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEEA9B3D7\"2share98599009prefix2Tue, 23 Jul 2019 16:43:47 GMT\"0x8D70F8CEEBC7BF7\"2",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "x-ms-request-id" : "86be9ccc-101a-010f-2a0a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share412786c61Fri, 26 Jul 2019 23:31:02 GMT\"0x8D7122152A79721\"2share412786c6prefix0Fri, 26 Jul 2019 23:31:02 GMT\"0x8D7122152A2B3ED\"2share412786c6prefix2Fri, 26 Jul 2019 23:31:02 GMT\"0x8D7122152ACA176\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share985990091?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cce-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cce-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:31:02.8652558Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ccf-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ccf-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:31:02.8952843Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd0-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd0-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:31:02.9253118Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd1-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd1-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:31:02.9563424Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd2-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd2-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:31:02.9873706Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd3-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd3-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:31:03.0173986Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd4-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd4-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:31:03.0474275Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd5-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd5-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:31:03.0794583Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd6-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd6-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:31:03.1094859Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd7-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd7-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:31:03.1405155Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd8-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd8-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:31:03.1745482Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cd9-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cd9-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:31:03.2045762Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cda-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cda-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:31:03.2336040Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cdb-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cdb-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:31:03.2646341Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cdc-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cdc-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:31:03.2946621Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cdd-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cdd-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:31:03.3236898Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cde-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cde-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:31:03.3547194Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cdf-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cdf-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:31:03.3827451Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce0-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce0-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:31:03.4147764Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce1-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce1-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:31:03.4448053Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce2-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce2-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:31:03.4748323Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce3-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce3-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:31:03.5048617Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce4-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce4-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:31:03.5348897Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce5-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce5-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:31:03.5659189Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce6-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce6-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:31:03.5969495Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce7-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce7-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:31:03.6289794Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce8-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce8-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:31:03.6600081Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ce9-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ce9-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:31:03.6900361Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cea-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cea-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:31:03.7200664Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:02 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cec-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cec-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:31:03.7510955Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ced-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ced-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:31:03.7841266Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cee-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cee-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:31:03.8141546Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cef-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cef-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:31:03.8461847Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf0-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf0-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:31:03.8752121Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf1-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf1-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:31:03.9032389Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf2-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf2-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:31:03.9302654Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf3-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf3-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:31:03.9602945Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf4-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf4-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:03.9903231Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf5-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf5-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:04.0193497Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf6-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf6-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:04.0493783Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf7-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf7-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:04.0794070Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf8-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf8-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:04.1104373Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cf9-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cf9-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:04.1434686Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cfa-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cfa-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:04.1734977Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cfb-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cfb-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:04.2045266Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cfc-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cfc-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:04.2355588Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cfd-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cfd-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:04.2695889Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cfe-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cfe-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:04.2996185Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9cff-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9cff-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:04.3316481Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d00-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d00-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:31:04.3626784Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d01-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d01-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:04.3937069Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d02-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d02-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:31:04.4257379Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d03-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d03-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:31:04.4567687Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d04-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d04-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:31:04.4867959Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d05-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d05-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:04.5178263Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d06-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d06-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:04.5478544Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d07-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d07-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:31:04.5798845Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d08-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d08-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:31:04.6119151Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d09-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d09-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:31:04.6439466Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d0a-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d0a-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:31:04.6719733Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share412786c61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86be9d0b-101a-010f-670a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:03 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share412786c6prefix0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "retry-after" : "0",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "x-ms-request-id" : "86be9d0c-101a-010f-680a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share412786c6prefix2?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -102,12 +1274,1342 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781fbf-001a-006b-1e75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "x-ms-request-id" : "86be9d0d-101a-010f-690a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d0e-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d0e-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:04.7970920Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d0f-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d0f-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:04.8271211Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d10-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d10-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:31:04.8581503Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d11-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d11-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:31:04.8901802Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d12-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d12-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:31:04.9212098Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d13-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d13-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:31:04.9542409Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d14-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d14-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:04.9852705Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d15-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d15-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:05.0163006Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d16-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d16-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:05.0463295Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d17-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d17-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:05.0773578Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d18-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d18-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:05.1083879Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d19-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d19-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:05.1394171Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d1a-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d1a-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:05.1704458Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d1b-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d1b-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:05.2004742Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d1c-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d1c-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:31:05.2315048Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d1d-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d1d-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:31:05.2645349Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d1e-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d1e-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:31:05.2975669Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d1f-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d1f-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:31:05.3285961Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d20-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d20-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:31:05.3616267Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d21-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d21-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:31:05.3916552Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d22-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d22-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:31:05.4216846Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d23-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d23-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:31:05.4507128Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d24-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d24-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:31:05.4797396Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d25-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d25-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:31:05.5097683Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d26-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d26-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:31:05.5407977Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d27-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d27-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:31:05.5718262Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d28-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d28-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:31:05.6018540Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d29-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d29-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:31:05.6338846Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d2a-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d2a-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:31:05.6649136Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d2b-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d2b-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:31:05.6949428Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d2c-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d2c-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:31:05.7239704Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:04 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d2d-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d2d-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:31:05.7539982Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d2e-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d2e-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:31:05.7860274Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d2f-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d2f-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:31:05.8160561Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d30-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d30-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:31:05.8460839Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d31-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d31-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:31:05.8771143Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d32-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d32-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:31:05.9091435Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d33-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d33-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:31:05.9411736Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d34-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d34-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:31:05.9722026Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d35-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d35-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:31:06.0032316Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d36-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d36-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:31:06.0332598Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d37-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d37-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:31:06.0672919Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d38-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d38-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:31:06.0993225Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d39-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d39-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:31:06.1323552Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d3a-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d3a-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:31:06.1653847Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d3b-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d3b-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:31:06.1964136Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d3c-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d3c-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:31:06.2334487Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d3e-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d3e-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:31:06.2634774Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d3f-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d3f-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:31:06.2935052Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d40-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d40-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:31:06.3245337Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d41-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d41-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:31:06.3575651Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d42-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d42-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:31:06.3885959Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d43-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d43-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:31:06.4236277Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d44-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d44-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:31:06.4556588Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d45-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d45-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:31:06.4876880Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d46-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d46-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:31:06.5177167Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d47-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d47-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:31:06.5497459Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d48-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d48-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:31:06.5797747Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d49-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d49-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:31:06.6108041Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d4a-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d4a-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:31:06.6428338Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d4b-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d4b-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:31:06.6728625Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d4c-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d4c-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:31:06.7028898Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:05 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d4d-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d4d-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:31:06.7339197Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d4e-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d4e-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:31:06.7659499Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d4f-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d4f-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:31:06.7979800Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d50-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d50-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:31:06.8310109Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d51-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d51-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:31:06.8650429Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d52-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d52-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:31:06.9000757Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d53-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d53-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:31:06.9331074Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d54-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d54-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:31:06.9631357Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share98599009prefix0?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -115,15 +2617,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
"retry-after" : "0",
- "Content-Length" : "0",
- "StatusCode" : "202",
- "x-ms-request-id" : "a4781fc0-001a-006b-1f75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d55-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d55-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:31:06.9971673Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share98599009prefix2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -131,12 +2636,395 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
"retry-after" : "0",
- "Content-Length" : "0",
- "StatusCode" : "202",
- "x-ms-request-id" : "a4781fc1-001a-006b-2075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT"
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d56-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d56-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:31:07.0291974Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d57-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d57-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:31:07.0642306Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d58-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d58-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:31:07.0962608Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d59-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d59-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:31:07.1312940Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d5a-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d5a-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:31:07.1633241Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d5b-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d5b-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:31:07.1943522Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d5c-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d5c-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:31:07.2253821Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d5d-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d5d-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:31:07.2574136Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d5e-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d5e-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:31:07.2884416Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d5f-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d5f-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:31:07.3194720Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d60-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d60-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:31:07.3494993Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d61-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d61-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:31:07.3815290Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d62-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d62-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:31:07.4115578Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d63-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d63-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:31:07.4455893Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d64-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d64-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:31:07.4756176Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d65-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d65-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:31:07.5066470Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d66-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d66-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:31:07.5376760Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d67-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d67-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:31:07.5697061Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d68-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d68-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:31:07.6007360Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d69-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d69-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:31:07.6327652Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d6a-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d6a-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:31:07.6637947Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:06 GMT",
+ "Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share98599009" ]
+ "variables" : [ "share412786c6" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setFileServiceProperties.json b/storage/client/file/src/test/resources/session-records/setFileServiceProperties.json
index c72087f424609..f8283cb5c977a 100644
--- a/storage/client/file/src/test/resources/session-records/setFileServiceProperties.json
+++ b/storage/client/file/src/test/resources/session-records/setFileServiceProperties.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -12,14 +12,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fcf-001a-006b-2b75-4192c4000000",
+ "x-ms-request-id" : "86be9ebd-101a-010f-050a-449bd5000000",
"Body" : "1.0truetruetrue71.0falsefalse",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -31,12 +31,12 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781fd0-001a-006b-2c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT"
+ "x-ms-request-id" : "86be9ebe-101a-010f-060a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -47,14 +47,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fd5-001a-006b-2d75-4192c4000000",
+ "x-ms-request-id" : "86be9ec3-101a-010f-070a-449bd5000000",
"Body" : "1.0truefalsetrue31.0truefalsetrue3",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -66,12 +66,12 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781fd6-001a-006b-2e75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT"
+ "x-ms-request-id" : "86be9ec4-101a-010f-080a-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -82,14 +82,14 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fd7-001a-006b-2f75-4192c4000000",
+ "x-ms-request-id" : "86be9ec5-101a-010f-090a-449bd5000000",
"Body" : "1.0truetruetrue71.0falsefalse",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share6218730e&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -100,11 +100,2899 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fd8-001a-006b-3075-4192c4000000",
- "Body" : "share6218730e",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86be9ec6-101a-010f-0a0a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ec7-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ec7-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:31:18.1686819Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ec8-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ec8-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:31:18.2047172Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ec9-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ec9-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:31:18.2367464Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eca-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eca-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:31:18.2687765Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ecb-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ecb-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:31:18.2988053Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ecc-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ecc-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:31:18.3308350Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ecd-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ecd-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:31:18.3648661Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ece-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ece-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:31:18.3958950Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ecf-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ecf-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:31:18.4259242Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed0-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed0-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:31:18.4569527Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed1-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed1-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:31:18.4889829Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed2-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed2-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:31:18.5200132Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed3-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed3-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:31:18.5520424Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed4-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed4-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:31:18.5820707Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed5-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed5-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:31:18.6141009Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed6-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed6-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:31:18.6441291Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed7-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed7-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:31:18.6741574Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed8-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed8-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:31:18.7041856Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ed9-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ed9-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:31:18.7332137Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:17 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eda-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eda-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:31:18.7672452Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9edc-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9edc-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:31:18.7972735Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9edd-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9edd-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:31:18.8293036Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ede-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ede-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:31:18.8603331Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9edf-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9edf-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:31:18.8913630Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ee2-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ee2-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:31:18.9223910Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ee3-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ee3-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:31:18.9544226Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ee4-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ee4-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:31:18.9884532Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ee5-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ee5-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:31:19.0204838Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ee6-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ee6-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:31:19.0515123Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ee7-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ee7-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:31:19.0835425Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ee8-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ee8-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:31:19.1135716Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ee9-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ee9-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:31:19.1456013Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eea-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eea-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:31:19.1756296Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eeb-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eeb-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:31:19.2066600Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eec-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eec-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:31:19.2336838Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eed-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eed-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:31:19.2617106Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eee-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eee-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:31:19.2907377Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eef-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eef-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:31:19.3197648Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef0-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef0-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:31:19.3487933Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef1-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef1-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:31:19.3788206Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef2-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef2-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:31:19.4088498Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef3-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef3-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:31:19.4378764Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef4-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef4-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:31:19.4679042Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef5-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef5-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:31:19.4999358Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef6-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef6-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:31:19.5329655Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef7-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef7-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:31:19.5619946Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef8-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef8-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:31:19.5940254Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ef9-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ef9-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:31:19.6250532Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9efa-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9efa-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:31:19.6560828Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9efb-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9efb-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:31:19.6871125Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9efc-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9efc-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:31:19.7181417Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:18 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9efd-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9efd-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:31:19.7501725Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9efe-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9efe-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:31:19.7802009Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9eff-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9eff-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:31:19.8122304Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f00-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f00-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:31:19.8432600Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f01-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f01-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:31:19.8752904Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f02-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f02-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:31:19.9053183Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f03-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f03-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:31:19.9373496Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f04-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f04-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:31:19.9683783Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f05-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f05-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:31:20.0004092Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f06-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f06-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:31:20.0314388Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f07-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f07-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:31:20.0624680Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f08-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f08-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:31:20.0934967Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f09-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f09-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:31:20.1245268Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f0a-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f0a-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:31:20.1555564Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f0b-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f0b-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:31:20.1845846Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f0c-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f0c-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:31:20.2166141Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f0d-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f0d-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:20.2476432Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f0e-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f0e-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:20.2796750Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f0f-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f0f-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:20.3107037Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f10-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f10-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:20.3417338Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f11-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f11-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:20.3727625Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f12-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f12-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:20.4037917Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f13-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f13-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:20.4358216Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f14-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f14-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:20.4668517Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f15-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f15-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:20.5028854Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f16-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f16-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:20.5349174Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f17-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f17-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:20.5649446Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f18-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f18-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:20.5999774Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f19-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f19-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:31:20.6300065Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f1a-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f1a-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:20.6610363Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f1b-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f1b-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:31:20.6910650Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f1c-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f1c-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:31:20.7220962Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:19 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f1d-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f1d-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:31:20.7531242Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f1e-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f1e-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:20.7851548Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f1f-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f1f-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:20.8161851Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f20-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f20-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:31:20.8472140Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f21-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f21-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:31:20.8792455Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f22-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f22-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:31:20.9092727Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f23-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f23-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:31:20.9423045Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f24-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f24-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:31:20.9733348Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f25-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f25-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:31:21.0053658Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f26-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f26-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:31:21.0363943Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f27-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f27-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:21.0674236Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f28-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f28-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:21.0984539Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f29-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f29-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:31:21.1304840Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f2a-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f2a-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:31:21.1645165Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f2b-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f2b-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:31:21.1965480Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f2c-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f2c-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:31:21.2275764Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f2d-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f2d-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:21.2586063Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f2f-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f2f-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:21.2906369Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f30-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f30-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:21.3206655Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f31-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f31-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:21.3506942Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f32-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f32-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:21.3817240Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f33-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f33-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:21.4117522Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f34-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f34-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:21.4427820Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f35-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f35-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:21.4748126Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f36-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f36-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:31:21.5058428Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f37-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f37-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:31:21.5378732Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f38-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f38-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:31:21.5689019Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f39-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f39-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:31:21.6019334Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f3a-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f3a-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:31:21.6319614Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f3b-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f3b-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:31:21.6629920Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f3c-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f3c-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:31:21.6940207Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f3d-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f3d-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:31:21.7250499Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:20 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f3e-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f3e-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:31:21.7570807Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f3f-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f3f-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:31:21.7891101Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f40-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f40-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:31:21.8361554Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f41-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f41-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:31:21.8821986Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f42-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f42-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:31:21.9162313Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f43-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f43-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:31:21.9472618Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f44-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f44-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:31:21.9772889Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f45-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f45-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:31:22.0083185Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f46-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f46-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:31:22.0403484Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f47-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f47-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:31:22.0733804Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f48-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f48-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:31:22.1044105Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f49-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f49-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:31:22.1354392Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f4a-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f4a-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:31:22.1684713Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f4b-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f4b-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:31:22.1994995Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f4c-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f4c-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:31:22.2315303Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f4d-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f4d-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:31:22.2665633Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f4e-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f4e-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:31:22.2995953Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f4f-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f4f-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:31:22.3286216Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f50-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f50-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:31:22.3576494Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f51-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f51-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:31:22.3876792Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f52-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f52-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:31:22.4167051Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f53-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f53-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:31:22.4457328Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f54-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f54-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:31:22.4797656Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f55-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f55-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:31:22.5127971Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f56-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f56-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:31:22.5488308Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f57-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f57-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:31:22.5808616Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f58-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f58-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:31:22.6128915Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f59-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f59-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:31:22.6439202Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f5a-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f5a-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:31:22.6739491Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f5b-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f5b-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:31:22.7049788Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f5c-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f5c-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:31:22.7370087Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f5e-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f5e-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:31:22.7690395Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f5f-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f5f-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:31:22.7990679Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f60-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f60-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:31:22.8300971Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f61-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f61-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:31:22.8611267Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f62-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f62-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:31:22.8921559Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f63-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f63-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:31:22.9241872Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share6218730e" ]
+ "variables" : [ "share462591f5" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setHttpHeadersFromFileClient.json b/storage/client/file/src/test/resources/session-records/setHttpHeadersFromFileClient.json
index 2c2ad20a05635..34e64703d59aa 100644
--- a/storage/client/file/src/test/resources/session-records/setHttpHeadersFromFileClient.json
+++ b/storage/client/file/src/test/resources/session-records/setHttpHeadersFromFileClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile81885521",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile773187d2",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3EAD5747\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "ETag" : "\"0x8D712205A3F3169\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c33-001a-006b-3875-4192c4000000",
+ "x-ms-request-id" : "86be83fe-101a-010f-1609-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile81885521?comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile773187d2?comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,15 +28,15 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3EB5962E\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "ETag" : "\"0x8D712205A47BEEE\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781c34-001a-006b-3975-4192c4000000",
+ "x-ms-request-id" : "86be8400-101a-010f-1809-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
} ],
- "variables" : [ "file81885521" ]
+ "variables" : [ "file773187d2" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setMeatadataFromFileClient.json b/storage/client/file/src/test/resources/session-records/setMeatadataFromFileClient.json
index 636ea1308eec5..e4b4599548042 100644
--- a/storage/client/file/src/test/resources/session-records/setMeatadataFromFileClient.json
+++ b/storage/client/file/src/test/resources/session-records/setMeatadataFromFileClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile571383d4",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile17989fc0",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3ECFB295\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "ETag" : "\"0x8D712205A5AFD73\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:06 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c37-001a-006b-3c75-4192c4000000",
+ "x-ms-request-id" : "86be8404-101a-010f-1c09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile571383d4?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile17989fc0?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,15 +28,15 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3ED81888\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:52 GMT",
+ "ETag" : "\"0x8D712205A61196B\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:06 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781c38-001a-006b-3d75-4192c4000000",
+ "x-ms-request-id" : "86be8405-101a-010f-1d09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
} ],
- "variables" : [ "file571383d4" ]
+ "variables" : [ "file17989fc0" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setMetadataDoesNotExistFromShareClient.json b/storage/client/file/src/test/resources/session-records/setMetadataDoesNotExistFromShareClient.json
index a5c5b574deedc..b93a2d8d80fbd 100644
--- a/storage/client/file/src/test/resources/session-records/setMetadataDoesNotExistFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/setMetadataDoesNotExistFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share7646218d?restype=share&comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share490564a9?restype=share&comp=metadata",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781dbb-001a-006b-7675-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781dbb-001a-006b-7675-4192c4000000\nTime:2019-07-23T16:41:16.3775365Z",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85b2-101a-010f-0309-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be85b2-101a-010f-0309-449bd5000000\nTime:2019-07-26T23:26:29.3767997Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share7646218d?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share490564a9?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781dbc-001a-006b-7775-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781dbc-001a-006b-7775-4192c4000000\nTime:2019-07-23T16:41:16.4265718Z",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85b3-101a-010f-0409-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be85b3-101a-010f-0409-449bd5000000\nTime:2019-07-26T23:26:29.4088306Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share7646218d" ]
+ "variables" : [ "share490564a9" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setMetadataFromDirClient.json b/storage/client/file/src/test/resources/session-records/setMetadataFromDirClient.json
index 6ecfa9d794603..91c39e8490c47 100644
--- a/storage/client/file/src/test/resources/session-records/setMetadataFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/setMetadataFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory54792b?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory60118b?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB5439FA6\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "ETag" : "\"0x8D712210FB7D651\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781ebc-001a-006b-1475-4192c4000000",
+ "x-ms-request-id" : "86be941f-101a-010f-0b09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:09 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory54792b?restype=directory&comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory60118b?restype=directory&comp=metadata",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,15 +28,15 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB54B9056\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "ETag" : "\"0x8D712210FBD55D8\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781ebd-001a-006b-1575-4192c4000000",
+ "x-ms-request-id" : "86be9420-101a-010f-0c09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:09 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
} ],
- "variables" : [ "directory54792b" ]
+ "variables" : [ "directory60118b" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setMetadataFromShareClient.json b/storage/client/file/src/test/resources/session-records/setMetadataFromShareClient.json
index 51d3bce22d346..fbd3a04e746c1 100644
--- a/storage/client/file/src/test/resources/session-records/setMetadataFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/setMetadataFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share75460f03?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2205234e?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C790176C5\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "ETag" : "\"0x8D712209430DE07\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d4d-001a-006b-4c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "x-ms-request-id" : "86be853b-101a-010f-4709-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share75460f03?restype=share&comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2205234e?restype=share&comp=metadata",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -27,17 +27,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C79099325\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "ETag" : "\"0x8D712209436E70C\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781d4f-001a-006b-4d75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "x-ms-request-id" : "86be853d-101a-010f-4809-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share75460f03?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2205234e?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -45,21 +45,21 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"x-ms-has-legal-hold" : "false",
"x-ms-share-quota" : "5120",
- "ETag" : "\"0x8D70F8C79099325\"",
+ "ETag" : "\"0x8D712209436E70C\"",
"x-ms-has-immutability-policy" : "false",
"x-ms-meta-setting" : "metadata",
"Content-Length" : "0",
- "x-ms-request-id" : "a4781d50-001a-006b-4e75-4192c4000000"
+ "x-ms-request-id" : "86be853e-101a-010f-4909-449bd5000000"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share75460f03?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2205234e?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -70,9 +70,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d51-001a-006b-4f75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be853f-101a-010f-4a09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
} ],
- "variables" : [ "share75460f03" ]
+ "variables" : [ "share2205234e" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setMetadataInvalidKeyFromDirClient.json b/storage/client/file/src/test/resources/session-records/setMetadataInvalidKeyFromDirClient.json
index ca338623cd5ab..cb4afac14bb0d 100644
--- a/storage/client/file/src/test/resources/session-records/setMetadataInvalidKeyFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/setMetadataInvalidKeyFromDirClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory04212f?restype=directory",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory425914?restype=directory",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8CB53321EA\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:42:10 GMT",
+ "ETag" : "\"0x8D712210FACB016\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:29:10 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781eba-001a-006b-1275-4192c4000000",
+ "x-ms-request-id" : "86be941d-101a-010f-0909-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:42:09 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/dirsharename/directory04212f?restype=directory&comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/dirsharename/directory425914?restype=directory&comp=metadata",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "260",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781ebb-001a-006b-1375-4192c4000000",
- "Body" : "InvalidMetadata
The metadata specified is invalid. It has characters that are not permitted.\nRequestId:a4781ebb-001a-006b-1375-4192c4000000\nTime:2019-07-23T16:42:10.6604019Z",
- "Date" : "Tue, 23 Jul 2019 16:42:09 GMT",
+ "x-ms-request-id" : "86be941e-101a-010f-0a09-449bd5000000",
+ "Body" : "InvalidMetadata
The metadata specified is invalid. It has characters that are not permitted.\nRequestId:86be941e-101a-010f-0a09-449bd5000000\nTime:2019-07-26T23:29:10.2723966Z",
+ "Date" : "Fri, 26 Jul 2019 23:29:09 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "directory04212f" ]
+ "variables" : [ "directory425914" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setMetadataInvalidMetadataFromShareClient.json b/storage/client/file/src/test/resources/session-records/setMetadataInvalidMetadataFromShareClient.json
index 993c6b5ed18c0..8dbe2e0a0dbac 100644
--- a/storage/client/file/src/test/resources/session-records/setMetadataInvalidMetadataFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/setMetadataInvalidMetadataFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share911321d2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07267ee3?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C95EA6042\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:18 GMT",
+ "ETag" : "\"0x8D71220B091C234\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dde-001a-006b-1175-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85e0-101a-010f-2709-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share911321d2?restype=share&comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07267ee3?restype=share&comp=metadata",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "281",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781de1-001a-006b-1275-4192c4000000",
- "Body" : "EmptyMetadataKey
The key for one of the metadata key-value pairs is empty.\nRequestId:a4781de1-001a-006b-1275-4192c4000000\nTime:2019-07-23T16:41:18.1748228Zmetadata",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "x-ms-request-id" : "86be85e2-101a-010f-2809-449bd5000000",
+ "Body" : "EmptyMetadataKey
The key for one of the metadata key-value pairs is empty.\nRequestId:86be85e2-101a-010f-2809-449bd5000000\nTime:2019-07-26T23:26:30.7180774Zmetadata",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share911321d2?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07267ee3?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,9 +49,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781de2-001a-006b-1375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85e3-101a-010f-2909-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
} ],
- "variables" : [ "share911321d2" ]
+ "variables" : [ "share07267ee3" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPolicies.json b/storage/client/file/src/test/resources/session-records/setPolicies.json
index a5247ae91c9ee..cd66a2758fdb6 100644
--- a/storage/client/file/src/test/resources/session-records/setPolicies.json
+++ b/storage/client/file/src/test/resources/session-records/setPolicies.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share62017f60?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share70884c2f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C7703C30B\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D71220928A418D\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d05-001a-006b-1475-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT"
+ "x-ms-request-id" : "86be84f2-101a-010f-1109-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:39 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share62017f60?restype=share&comp=acl",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share70884c2f?restype=share&comp=acl",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -28,17 +28,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C770BDF57\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D71220928FFA82\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781d07-001a-006b-1575-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT"
+ "x-ms-request-id" : "86be84f4-101a-010f-1209-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share62017f60?restype=share&comp=acl",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share70884c2f?restype=share&comp=acl",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -47,18 +47,18 @@
"Transfer-Encoding" : "chunked",
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C770BDF57\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "ETag" : "\"0x8D71220928FFA82\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781d08-001a-006b-1675-4192c4000000",
+ "x-ms-request-id" : "86be84f5-101a-010f-1309-449bd5000000",
"Body" : "test2000-01-01T00:00:00.0000000Z2020-01-01T00:00:00.0000000Zr",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share62017f60?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share70884c2f?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -69,9 +69,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d09-001a-006b-1775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:25 GMT"
+ "x-ms-request-id" : "86be84f6-101a-010f-1409-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
} ],
- "variables" : [ "share62017f60" ]
+ "variables" : [ "share70884c2f" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPoliciesDoesNotExist.json b/storage/client/file/src/test/resources/session-records/setPoliciesDoesNotExist.json
index 6f5ee4c9407d8..dc3c7ab286849 100644
--- a/storage/client/file/src/test/resources/session-records/setPoliciesDoesNotExist.json
+++ b/storage/client/file/src/test/resources/session-records/setPoliciesDoesNotExist.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share49743cbd?restype=share&comp=acl",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share027533e9?restype=share&comp=acl",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -14,14 +14,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d43-001a-006b-4475-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781d43-001a-006b-4475-4192c4000000\nTime:2019-07-23T16:40:29.1508343Z",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "x-ms-request-id" : "86be8531-101a-010f-3f09-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be8531-101a-010f-3f09-449bd5000000\nTime:2019-07-26T23:25:42.6334377Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share49743cbd?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share027533e9?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -33,11 +33,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d44-001a-006b-4575-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781d44-001a-006b-4575-4192c4000000\nTime:2019-07-23T16:40:29.2008691Z",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "x-ms-request-id" : "86be8532-101a-010f-4009-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be8532-101a-010f-4009-449bd5000000\nTime:2019-07-26T23:25:42.6654680Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share49743cbd" ]
+ "variables" : [ "share027533e9" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPoliciesInvalidPermission.json b/storage/client/file/src/test/resources/session-records/setPoliciesInvalidPermission.json
index f8c215e0dc597..cedc8efe4cec8 100644
--- a/storage/client/file/src/test/resources/session-records/setPoliciesInvalidPermission.json
+++ b/storage/client/file/src/test/resources/session-records/setPoliciesInvalidPermission.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share2144443e?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share796875ee?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C949D09C9\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "ETag" : "\"0x8D71220AF9DB0E1\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:29 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781db0-001a-006b-6e75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT"
+ "x-ms-request-id" : "86be85a7-101a-010f-7b09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share2144443e?restype=share&comp=acl",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share796875ee?restype=share&comp=acl",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -32,14 +32,14 @@
"retry-after" : "0",
"Content-Length" : "294",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781db2-001a-006b-6f75-4192c4000000",
- "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:a4781db2-001a-006b-6f75-4192c4000000\nTime:2019-07-23T16:41:15.9892600Z00",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT",
+ "x-ms-request-id" : "86be85a9-101a-010f-7c09-449bd5000000",
+ "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:86be85a9-101a-010f-7c09-449bd5000000\nTime:2019-07-26T23:26:29.1155524Z00",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share2144443e?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share796875ee?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,9 +50,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781db3-001a-006b-7075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:15 GMT"
+ "x-ms-request-id" : "86be85aa-101a-010f-7d09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:28 GMT"
}
} ],
- "variables" : [ "share2144443e" ]
+ "variables" : [ "share796875ee" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPoliciesTooManyPermissions.json b/storage/client/file/src/test/resources/session-records/setPoliciesTooManyPermissions.json
index 1e66291217bae..e969f45604540 100644
--- a/storage/client/file/src/test/resources/session-records/setPoliciesTooManyPermissions.json
+++ b/storage/client/file/src/test/resources/session-records/setPoliciesTooManyPermissions.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share28227ac8?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share80042dfb?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C77EA7C99\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "ETag" : "\"0x8D71220935515C7\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d26-001a-006b-2e75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT"
+ "x-ms-request-id" : "86be8516-101a-010f-2b09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share28227ac8?restype=share&comp=acl",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share80042dfb?restype=share&comp=acl",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -32,14 +32,14 @@
"retry-after" : "0",
"Content-Length" : "294",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781d29-001a-006b-3075-4192c4000000",
- "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:a4781d29-001a-006b-3075-4192c4000000\nTime:2019-07-23T16:40:27.8429018Z00",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "x-ms-request-id" : "86be8518-101a-010f-2c09-449bd5000000",
+ "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:86be8518-101a-010f-2c09-449bd5000000\nTime:2019-07-26T23:25:41.6765299Z00",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share28227ac8?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share80042dfb?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,9 +50,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d2b-001a-006b-3275-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:27 GMT"
+ "x-ms-request-id" : "86be8519-101a-010f-2d09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:41 GMT"
}
} ],
- "variables" : [ "share28227ac8" ]
+ "variables" : [ "share80042dfb" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPropertiesDoesNotExistFromShareClient.json b/storage/client/file/src/test/resources/session-records/setPropertiesDoesNotExistFromShareClient.json
index 61be09fe38782..2098dcc296216 100644
--- a/storage/client/file/src/test/resources/session-records/setPropertiesDoesNotExistFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/setPropertiesDoesNotExistFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share74233b07?restype=share&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07545e98?restype=share&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781dd6-001a-006b-0a75-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781dd6-001a-006b-0a75-4192c4000000\nTime:2019-07-23T16:41:17.7485158Z",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "x-ms-request-id" : "86be85d8-101a-010f-2009-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be85d8-101a-010f-2009-449bd5000000\nTime:2019-07-26T23:26:30.4027777Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share74233b07?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07545e98?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781dd7-001a-006b-0b75-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781dd7-001a-006b-0b75-4192c4000000\nTime:2019-07-23T16:41:17.7975514Z",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "x-ms-request-id" : "86be85d9-101a-010f-2109-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be85d9-101a-010f-2109-449bd5000000\nTime:2019-07-26T23:26:30.4368106Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share74233b07" ]
+ "variables" : [ "share07545e98" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPropertiesFromShareClient.json b/storage/client/file/src/test/resources/session-records/setPropertiesFromShareClient.json
index e137e0a5800e6..8907b656e03d3 100644
--- a/storage/client/file/src/test/resources/session-records/setPropertiesFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/setPropertiesFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share71347507?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share398437b6?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C95C1E93A\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "ETag" : "\"0x8D71220B0730F33\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dd8-001a-006b-0c75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85da-101a-010f-2209-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share71347507?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share398437b6?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,19 +28,19 @@
"x-ms-version" : "2018-11-09",
"x-ms-share-quota" : "2",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C95C1E93A\"",
+ "ETag" : "\"0x8D71220B0730F33\"",
"x-ms-has-immutability-policy" : "false",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781dda-001a-006b-0d75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "x-ms-request-id" : "86be85dc-101a-010f-2309-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"x-ms-has-legal-hold" : "false"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share71347507?restype=share&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share398437b6?restype=share&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -48,17 +48,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C95D17F11\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "ETag" : "\"0x8D71220B07CB7DC\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781ddb-001a-006b-0e75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85dd-101a-010f-2409-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share71347507?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share398437b6?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -67,19 +67,19 @@
"x-ms-version" : "2018-11-09",
"x-ms-share-quota" : "4",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C95D17F11\"",
+ "ETag" : "\"0x8D71220B07CB7DC\"",
"x-ms-has-immutability-policy" : "false",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781ddc-001a-006b-0f75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "x-ms-request-id" : "86be85de-101a-010f-2509-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"x-ms-has-legal-hold" : "false"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share71347507?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share398437b6?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -90,9 +90,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781ddd-001a-006b-1075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:17 GMT"
+ "x-ms-request-id" : "86be85df-101a-010f-2609-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT"
}
} ],
- "variables" : [ "share71347507" ]
+ "variables" : [ "share398437b6" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedHeader.json b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedHeader.json
index 64f1db166613b..c830c5421e6d6 100644
--- a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedHeader.json
+++ b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedHeader.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -14,14 +14,14 @@
"retry-after" : "0",
"Content-Length" : "294",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781fc2-001a-006b-2175-4192c4000000",
- "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:a4781fc2-001a-006b-2175-4192c4000000\nTime:2019-07-23T16:43:47.4734913Z00",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "x-ms-request-id" : "86be9d6b-101a-010f-460a-449bd5000000",
+ "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:86be9d6b-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:31:07.7348618Z00",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share42833eb8&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,2899 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fc3-001a-006b-2275-4192c4000000",
- "Body" : "share42833eb8",
- "Date" : "Tue, 23 Jul 2019 16:43:46 GMT",
+ "x-ms-request-id" : "86be9d6d-101a-010f-470a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d6e-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d6e-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:31:07.8549749Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d6f-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d6f-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:31:07.8860038Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d70-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d70-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:31:07.9170342Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d71-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d71-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:31:07.9480622Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d72-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d72-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:31:07.9790921Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d73-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d73-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:31:08.0121230Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d74-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d74-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:31:08.0411496Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d75-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d75-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:31:08.0741809Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d76-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d76-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:08.1042092Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d77-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d77-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:08.1352396Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d78-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d78-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:08.1662685Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d79-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d79-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:08.1982982Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d7a-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d7a-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:08.2293267Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d7b-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d7b-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:08.2613569Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d7c-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d7c-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:08.2913856Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d7d-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d7d-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:08.3274195Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d7e-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d7e-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:08.3584489Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d7f-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d7f-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:08.3894779Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d80-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d80-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:08.4205083Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d81-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d81-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:08.4495344Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d82-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d82-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:31:08.4795627Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d83-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d83-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:08.5105917Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d84-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d84-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:31:08.5406209Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d85-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d85-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:31:08.5716489Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d86-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d86-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:31:08.6016781Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d87-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d87-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:08.6337082Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d88-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d88-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:08.6647381Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d89-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d89-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:31:08.6967674Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d8a-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d8a-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:31:08.7287975Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:07 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d8c-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d8c-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:31:08.7578246Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d8d-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d8d-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:31:08.7888545Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d8e-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d8e-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:31:08.8198839Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d8f-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d8f-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:31:08.8499103Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d90-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d90-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:31:08.8809407Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d91-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d91-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:08.9139725Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d92-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d92-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:08.9440003Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d93-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d93-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:31:08.9760295Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d94-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d94-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:31:09.0060592Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d95-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d95-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:31:09.0380879Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d96-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d96-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:31:09.0691173Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d97-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d97-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:09.1001472Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d98-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d98-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:09.1321765Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d99-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d99-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:09.1642071Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d9a-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d9a-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:09.1962368Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d9b-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d9b-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:09.2262650Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d9c-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d9c-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:09.2582952Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d9d-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d9d-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:09.2883234Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d9e-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d9e-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:09.3193529Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9d9f-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9d9f-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:31:09.3493807Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da0-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da0-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:31:09.3814113Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da1-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da1-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:31:09.4114395Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da2-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da2-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:31:09.4444708Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da3-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da3-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:31:09.4745010Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da4-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da4-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:31:09.5035262Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da5-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da5-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:31:09.5335545Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da6-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da6-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:31:09.5655846Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da7-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da7-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:31:09.5956133Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da8-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da8-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:31:09.6316468Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9da9-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9da9-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:31:09.6626758Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9daa-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9daa-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:31:09.6947068Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dab-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dab-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:31:09.7277382Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:08 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dac-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dac-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:31:09.7577659Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dad-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dad-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:31:09.7948006Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dae-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dae-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:31:09.8258295Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9daf-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9daf-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:31:09.8568594Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9db0-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9db0-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:31:09.8888891Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9db3-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9db3-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:31:09.9199181Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9db4-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9db4-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:31:09.9529490Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9db5-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9db5-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:31:09.9859812Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9db6-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9db6-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:31:10.0160095Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9db7-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9db7-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:31:10.0460373Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9db8-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9db8-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:31:10.0760646Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9db9-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9db9-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:31:10.1080952Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dba-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dba-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:31:10.1421286Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dbb-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dbb-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:31:10.1741588Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dbc-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dbc-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:31:10.2061880Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dbd-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dbd-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:31:10.2382186Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dbe-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dbe-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:31:10.2692462Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dbf-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dbf-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:31:10.3012777Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dc0-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dc0-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:31:10.3313051Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dc1-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dc1-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:31:10.3633357Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dc2-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dc2-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:31:10.3933639Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dc3-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dc3-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:31:10.4253941Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dc4-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dc4-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:31:10.4604277Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dc6-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dc6-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:31:10.4894548Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dc7-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dc7-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:31:10.5204838Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dc8-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dc8-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:31:10.5515142Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dc9-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dc9-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:31:10.5805399Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dca-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dca-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:31:10.6115702Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dcb-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dcb-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:31:10.6415980Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dcc-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dcc-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:31:10.6736282Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dcd-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dcd-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:31:10.7046571Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:09 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dce-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dce-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:31:10.7356856Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dcf-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dcf-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:31:10.7677167Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd0-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd0-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:31:10.7967438Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd1-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd1-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:31:10.8247697Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd2-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd2-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:31:10.8557996Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd3-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd3-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:31:10.8838246Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd4-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd4-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:31:10.9138543Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd5-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd5-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:31:10.9418806Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd6-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd6-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:31:10.9719094Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd7-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd7-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:31:11.0029369Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd8-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd8-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:31:11.0329657Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dd9-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dd9-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:31:11.0669982Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dda-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dda-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:31:11.0970274Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ddb-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ddb-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:31:11.1280554Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ddc-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ddc-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:31:11.1650900Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ddd-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ddd-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:31:11.1961190Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dde-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dde-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:31:11.2281496Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de0-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de0-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:31:11.2611805Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de1-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de1-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:31:11.2912087Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de2-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de2-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:31:11.3232398Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de3-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de3-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:31:11.3552695Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de4-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de4-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:31:11.3852977Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de5-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de5-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:31:11.4173270Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de6-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de6-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:31:11.4483564Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de7-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de7-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:31:11.4793854Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de8-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de8-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:31:11.5104148Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9de9-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9de9-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:31:11.5414442Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dea-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dea-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:31:11.5734744Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9deb-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9deb-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:31:11.6035031Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dec-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dec-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:31:11.6365340Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ded-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ded-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:31:11.6665622Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9def-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9def-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:31:11.6985928Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df0-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df0-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:31:11.7296213Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:10 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df1-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df1-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:31:11.7606508Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df2-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df2-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:31:11.7906790Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df3-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df3-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:31:11.8207073Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df4-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df4-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:31:11.8527370Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df5-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df5-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:31:11.8837664Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df6-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df6-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:31:11.9147954Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df7-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df7-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:31:11.9458248Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df8-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df8-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:31:11.9768543Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9df9-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9df9-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:31:12.0078842Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dfa-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dfa-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:12.0459190Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dfb-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dfb-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:12.0799515Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dfc-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dfc-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:12.1099798Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dfd-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dfd-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:12.1410083Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dfe-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dfe-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:12.1730389Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9dff-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9dff-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:12.2020665Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e00-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e00-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:12.2320943Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e01-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e01-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:12.2641244Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e02-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e02-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:12.2931524Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e03-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e03-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:12.3231807Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e04-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e04-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:12.3522068Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e05-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e05-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:12.3842370Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e06-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e06-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:31:12.4152664Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e08-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e08-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:12.4523015Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e09-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e09-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:31:12.4853328Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e0a-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e0a-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:31:12.5153611Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e0e-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e0e-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:12.5463919Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9e0f-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9e0f-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:12.5764197Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:11 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share42833eb8" ]
+ "variables" : [ "share58732283" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedMethod.json b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedMethod.json
index bde0f4c241c81..2d53f3e767b08 100644
--- a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedMethod.json
+++ b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedMethod.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -14,14 +14,14 @@
"retry-after" : "0",
"Content-Length" : "340",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781fd9-001a-006b-3175-4192c4000000",
- "Body" : "InvalidXmlNodeValue
The value for one of the XML nodes is not in the correct format.\nRequestId:a4781fd9-001a-006b-3175-4192c4000000\nTime:2019-07-23T16:43:48.3661282ZAllowedMethodsNOTAREALHTTPMETHOD",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86be9f65-101a-010f-250a-449bd5000000",
+ "Body" : "InvalidXmlNodeValue
The value for one of the XML nodes is not in the correct format.\nRequestId:86be9f65-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:31:22.9932524ZAllowedMethodsNOTAREALHTTPMETHOD",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share26492564&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,2899 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fda-001a-006b-3275-4192c4000000",
- "Body" : "share26492564",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86be9f66-101a-010f-260a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f67-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f67-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:31:23.1173700Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f68-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f68-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:31:23.1493999Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f69-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f69-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:31:23.1794298Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f6a-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f6a-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:31:23.2114592Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f6b-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f6b-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:31:23.2424879Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f6c-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f6c-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:31:23.2735190Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f6d-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f6d-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:31:23.3045467Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f6e-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f6e-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:31:23.3355754Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f6f-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f6f-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:31:23.3696086Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f70-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f70-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:31:23.4006383Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f71-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f71-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:31:23.4316674Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f72-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f72-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:31:23.4626971Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f73-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f73-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:31:23.4947270Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f74-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f74-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:31:23.5257561Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f75-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f75-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:31:23.5567853Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f76-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f76-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:31:23.5868152Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f77-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f77-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:31:23.6178434Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f78-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f78-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:31:23.6488735Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f79-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f79-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:31:23.6799031Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f7a-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f7a-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:31:23.7109328Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f7b-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f7b-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:31:23.7439634Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f7c-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f7c-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:31:23.7749930Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f7e-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f7e-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:31:23.8050224Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f7f-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f7f-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:31:23.8360502Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f80-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f80-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:31:23.8660801Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f81-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f81-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:31:23.8981090Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f82-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f82-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:31:23.9281375Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f83-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f83-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:31:23.9601688Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f84-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f84-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:31:23.9911984Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f85-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f85-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:31:24.0232278Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f86-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f86-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:31:24.0542570Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f87-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f87-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:31:24.0852866Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f88-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f88-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:31:24.1163158Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f89-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f89-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:31:24.1463443Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f8a-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f8a-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:31:24.1763736Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f8b-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f8b-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:31:24.2084031Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f8c-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f8c-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:31:24.2404344Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f8d-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f8d-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:31:24.2704628Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f8e-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f8e-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:31:24.2984898Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f8f-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f8f-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:31:24.3295181Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f90-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f90-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:31:24.3605477Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f91-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f91-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:24.3915764Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f92-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f92-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:24.4226065Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f93-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f93-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:24.4546364Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f94-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f94-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:24.4856661Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f95-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f95-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:24.5217007Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f96-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f96-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:24.5497277Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f97-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f97-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:24.5807564Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f98-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f98-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:24.6137870Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f99-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f99-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:24.6488204Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f9a-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f9a-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:24.6808522Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f9b-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f9b-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:24.7118818Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f9c-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f9c-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:24.7429110Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f9d-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f9d-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:31:24.7739402Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f9e-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f9e-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:24.8039677Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9f9f-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9f9f-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:31:24.8349969Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa0-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa0-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:31:24.8660275Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa1-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa1-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:31:24.8980564Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa2-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa2-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:24.9290865Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa3-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa3-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:24.9611173Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa4-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa4-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:31:24.9931468Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa5-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa5-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:31:25.0241778Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa6-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa6-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:31:25.0552056Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa7-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa7-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:31:25.0872364Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa8-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa8-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:31:25.1182656Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fa9-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fa9-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:31:25.1492957Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9faa-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9faa-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:31:25.1803244Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fab-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fab-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:25.2093517Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fac-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fac-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:25.2443851Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fad-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fad-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:31:25.2764154Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fae-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fae-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:31:25.3074446Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9faf-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9faf-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:31:25.3384747Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb0-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb0-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:31:25.3705046Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb1-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb1-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:25.4005340Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb2-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb2-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:25.4335646Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb3-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb3-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:25.4675969Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb4-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb4-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:25.4976626Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb5-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb5-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:25.5256521Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb6-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb6-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:25.5546805Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb7-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb7-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:25.5857089Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb8-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb8-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:25.6157380Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fb9-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fb9-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:31:25.6477686Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fba-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fba-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:31:25.6808008Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fbb-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fbb-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:31:25.7158335Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fbc-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fbc-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:31:25.7468634Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fbd-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fbd-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:31:25.7778927Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fbe-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fbe-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:31:25.8069207Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fbf-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fbf-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:31:25.8369498Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc0-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc0-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:31:25.8659768Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc1-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc1-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:31:25.8950043Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc2-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc2-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:31:25.9240331Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc3-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc3-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:31:25.9560632Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc4-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc4-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:31:25.9870926Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc5-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc5-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:31:26.0181224Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc6-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc6-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:31:26.0481506Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc7-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc7-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:31:26.0781793Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc8-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc8-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:31:26.1102094Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fc9-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fc9-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:31:26.1462442Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fca-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fca-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:31:26.1782748Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fcb-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fcb-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:31:26.2083034Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fcc-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fcc-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:31:26.2393333Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fcd-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fcd-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:31:26.2763684Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fcf-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fcf-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:31:26.3083990Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd0-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd0-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:31:26.3404295Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd1-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd1-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:31:26.3714598Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd2-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd2-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:31:26.4014880Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd3-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd3-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:31:26.4295231Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd4-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd4-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:31:26.4605441Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd5-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd5-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:31:26.4915740Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd6-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd6-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:31:26.5226027Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd7-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd7-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:31:26.5536333Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd8-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd8-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:31:26.5836613Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fd9-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fd9-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:31:26.6136897Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fda-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fda-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:31:26.6437191Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fdb-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fdb-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:31:26.6727450Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fdc-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fdc-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:31:26.7027735Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fdd-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fdd-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:31:26.7348038Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fde-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fde-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:31:26.7648318Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fdf-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fdf-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:31:26.7938605Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe0-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe0-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:31:26.8238889Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe1-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe1-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:31:26.8579221Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe2-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe2-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:31:26.8879492Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe3-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe3-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:31:26.9189788Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe4-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe4-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:31:26.9520104Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe5-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe5-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:31:26.9830391Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe6-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe6-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:31:27.0160711Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe7-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe7-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:31:27.0471002Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe8-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe8-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:31:27.0781299Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fe9-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fe9-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:31:27.1121617Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fea-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fea-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:31:27.1451932Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9feb-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9feb-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:31:27.1762228Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fec-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fec-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:31:27.2072520Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fed-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fed-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:31:27.2392824Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fee-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fee-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:31:27.2703115Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fef-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fef-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:31:27.3023424Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff0-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff0-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:31:27.3333711Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff1-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff1-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:31:27.3644021Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff2-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff2-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:31:27.3974327Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff3-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff3-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:31:27.4304633Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff4-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff4-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:31:27.4604913Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff5-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff5-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:31:27.4935229Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff6-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff6-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:31:27.5255537Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff7-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff7-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:31:27.5555817Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff8-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff8-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:31:27.5866127Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ff9-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ff9-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:31:27.6186417Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ffa-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ffa-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:31:27.6496722Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ffb-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ffb-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:31:27.6817017Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ffc-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ffc-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:31:27.7127308Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9ffd-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9ffd-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:31:27.7447612Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9fff-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9fff-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:31:27.7767925Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea000-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea000-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:31:27.8068200Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea001-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea001-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:31:27.8388508Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share26492564" ]
+ "variables" : [ "share479008a2" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedOrigin.json b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedOrigin.json
index fa758d47e3eff..b81d0c3005f44 100644
--- a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedOrigin.json
+++ b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidAllowedOrigin.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -14,14 +14,14 @@
"retry-after" : "0",
"Content-Length" : "294",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781fdc-001a-006b-3375-4192c4000000",
- "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:a4781fdc-001a-006b-3375-4192c4000000\nTime:2019-07-23T16:43:48.4682010Z00",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86bea002-101a-010f-3f0a-449bd5000000",
+ "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:86bea002-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:31:27.9119208Z00",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share46216ea8&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,2899 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fdd-001a-006b-3475-4192c4000000",
- "Body" : "share46216ea8",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86bea005-101a-010f-420a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea006-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea006-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:31:28.0290315Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea007-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea007-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:31:28.0600598Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea008-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea008-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:31:28.0910899Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea009-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea009-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:31:28.1221190Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea00a-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea00a-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:31:28.1581546Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea00b-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea00b-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:31:28.1901835Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea00c-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea00c-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:31:28.2202120Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea00d-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea00d-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:31:28.2492397Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea00e-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea00e-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:31:28.2772658Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea00f-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea00f-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:31:28.3072943Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea010-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea010-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:31:28.3363220Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea011-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea011-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:31:28.3653498Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea012-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea012-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:31:28.3943780Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea013-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea013-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:28.4274081Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea014-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea014-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:28.4554351Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea015-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea015-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:28.4834631Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea016-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea016-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:28.5144909Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea017-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea017-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:28.5435182Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea018-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea018-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:28.5755494Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea019-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea019-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:28.6055770Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea01a-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea01a-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:28.6356091Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea01b-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea01b-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:28.6656334Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea01c-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea01c-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:28.6976656Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea01d-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea01d-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:28.7286934Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:27 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea01e-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea01e-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:28.7597240Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea020-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea020-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:31:28.7917543Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea021-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea021-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:28.8227835Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea022-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea022-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:31:28.8528124Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea023-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea023-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:31:28.8818397Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea024-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea024-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:31:28.9118672Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea025-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea025-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:28.9438976Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea026-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea026-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:28.9749300Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea027-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea027-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:31:29.0069576Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea028-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea028-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:31:29.0409908Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea029-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea029-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:31:29.0720190Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea02a-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea02a-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:31:29.1030486Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea02b-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea02b-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:31:29.1350790Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea02c-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea02c-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:31:29.1661091Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea02d-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea02d-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:31:29.1971378Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea02e-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea02e-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:29.2281679Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea02f-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea02f-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:29.2591971Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea030-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea030-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:31:29.2912265Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea031-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea031-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:31:29.3212550Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea032-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea032-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:31:29.3502836Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea033-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea033-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:31:29.3793100Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea034-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea034-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:29.4103396Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea035-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea035-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:29.4423700Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea036-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea036-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:29.4734001Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea037-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea037-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:29.5034281Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea038-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea038-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:29.5334579Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea039-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea039-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:29.5654869Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea03a-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea03a-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:29.5975168Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea03b-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea03b-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:29.6275457Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea03c-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea03c-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:31:29.6575746Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea03d-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea03d-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:31:29.6896045Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea03e-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea03e-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:31:29.7206342Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea03f-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea03f-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:31:29.7526636Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:28 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea040-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea040-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:31:29.7836932Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea041-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea041-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:31:29.8157240Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea042-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea042-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:31:29.8457525Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea043-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea043-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:31:29.8777828Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea044-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea044-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:31:29.9078108Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea045-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea045-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:31:29.9398417Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea046-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea046-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:31:29.9728741Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea047-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea047-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:31:30.0039019Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea048-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea048-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:31:30.0339313Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea049-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea049-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:31:30.0649605Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea04a-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea04a-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:31:30.0949885Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea04b-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea04b-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:31:30.1250174Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea04c-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea04c-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:31:30.1550458Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea04d-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea04d-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:31:30.1870762Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea04e-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea04e-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:31:30.2181054Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea04f-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea04f-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:31:30.2481334Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea050-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea050-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:31:30.2791630Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea051-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea051-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:31:30.3091919Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea052-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea052-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:31:30.3432232Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea053-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea053-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:31:30.3732517Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea054-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea054-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:31:30.4022808Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea055-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea055-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:31:30.4313072Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea056-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea056-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:31:30.4613361Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea057-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea057-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:31:30.4893627Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea058-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea058-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:31:30.5203920Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea059-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea059-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:31:30.5494194Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea05a-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea05a-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:31:30.5784464Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea05b-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea05b-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:31:30.6064750Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea05c-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea05c-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:31:30.6365032Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea05d-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea05d-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:31:30.6695345Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea05e-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea05e-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:31:30.6995636Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea05f-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea05f-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:31:30.7305925Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:29 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea060-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea060-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:31:30.7626231Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea061-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea061-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:31:30.7956544Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea062-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea062-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:31:30.8246832Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea063-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea063-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:31:30.8557122Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea064-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea064-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:31:30.8877422Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea065-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea065-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:31:30.9187721Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea066-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea066-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:31:30.9498015Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea067-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea067-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:31:30.9818325Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea068-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea068-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:31:31.0128619Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea069-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea069-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:31:31.0438922Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea06a-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea06a-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:31:31.0749211Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea06b-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea06b-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:31:31.1059505Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea06c-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea06c-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:31:31.1369803Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea06d-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea06d-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:31:31.1740163Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea06e-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea06e-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:31:31.2040445Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea06f-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea06f-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:31:31.2350748Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea070-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea070-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:31:31.2641018Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea072-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea072-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:31:31.2961324Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea073-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea073-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:31:31.3281630Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea074-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea074-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:31:31.3591928Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea075-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea075-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:31:31.3892219Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea076-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea076-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:31:31.4212516Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea077-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea077-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:31:31.4512797Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea078-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea078-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:31:31.4833112Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea079-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea079-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:31:31.5133389Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea07a-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea07a-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:31:31.5453692Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea07b-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea07b-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:31:31.5763994Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea07c-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea07c-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:31:31.6064283Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea07d-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea07d-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:31:31.6364567Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea07e-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea07e-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:31:31.6674850Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea07f-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea07f-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:31:31.6975134Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea080-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea080-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:31:31.7285445Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:30 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea081-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea081-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:31:31.7595732Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea082-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea082-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:31:31.7906019Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea083-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea083-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:31:31.8196301Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea084-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea084-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:31:31.8486583Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea085-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea085-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:31:31.8796870Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea086-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea086-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:31:31.9097150Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea087-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea087-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:31:31.9417449Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea088-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea088-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:31:31.9727745Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea089-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea089-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:31:32.0058065Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea08a-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea08a-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:31:32.0368362Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea08b-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea08b-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:31:32.0698658Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea08c-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea08c-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:31:32.1038986Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea08d-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea08d-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:31:32.1339275Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea08e-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea08e-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:31:32.1659578Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea08f-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea08f-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:31:32.1979877Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea090-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea090-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:31:32.2280166Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea091-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea091-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:31:32.2590458Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea092-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea092-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:31:32.2890752Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea093-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea093-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:31:32.3201039Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea094-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea094-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:31:32.3511331Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea095-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea095-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:32.3831634Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea096-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea096-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:32.4151943Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea098-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea098-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:32.4452223Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea099-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea099-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:32.4822581Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea09a-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea09a-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:32.5142879Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea09b-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea09b-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:32.5443164Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea09c-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea09c-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:32.5783487Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea09d-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea09d-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:32.6093778Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea09e-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea09e-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:32.6404070Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea09f-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea09f-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:32.6724374Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0a0-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0a0-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:32.7034684Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:31 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share46216ea8" ]
+ "variables" : [ "share45502e37" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidExposedHeader.json b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidExposedHeader.json
index 9020928319556..85ee98b0de473 100644
--- a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidExposedHeader.json
+++ b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidExposedHeader.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -14,14 +14,14 @@
"retry-after" : "0",
"Content-Length" : "294",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781fde-001a-006b-3575-4192c4000000",
- "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:a4781fde-001a-006b-3575-4192c4000000\nTime:2019-07-23T16:43:48.5772777Z00",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86bea0a2-101a-010f-5b0a-449bd5000000",
+ "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:86bea0a2-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:32.7745350Z00",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share66999f9c&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,2899 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781fdf-001a-006b-3675-4192c4000000",
- "Body" : "share66999f9c",
- "Date" : "Tue, 23 Jul 2019 16:43:47 GMT",
+ "x-ms-request-id" : "86bea0a3-101a-010f-5c0a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share0458013c0Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214F98FCCC\"2share0458013c2Fri, 26 Jul 2019 23:30:57 GMT\"0x8D712214FAB29A7\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50527b7f0Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221436B8EC5\"2share50527b7f2Fri, 26 Jul 2019 23:30:37 GMT\"0x8D71221437D464D\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0a4-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0a4-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:32.8956491Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0a5-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0a5-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:31:32.9266788Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0a6-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0a6-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:31:32.9567072Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0a7-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0a7-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:31:32.9877373Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0a8-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0a8-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:33.0197677Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0458013c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0a9-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0a9-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:33.0507964Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0aa-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0aa-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:31:33.0828272Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ab-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ab-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:31:33.1128561Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ac-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ac-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:31:33.1428841Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ad-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ad-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:31:33.1719119Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ae-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ae-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:31:33.1999370Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0af-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0af-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:31:33.2299660Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b0-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b0-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:31:33.2579939Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b1-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b1-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:33.2870212Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b2-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b2-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:33.3180499Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b3-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b3-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:31:33.3480788Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b4-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b4-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:31:33.3791071Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b5-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b5-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:31:33.4101367Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b6-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b6-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:31:33.4421675Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b7-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b7-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:33.4721969Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b8-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b8-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:33.5042273Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0b9-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0b9-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:33.5342543Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ba-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ba-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:33.5662842Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0bb-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0bb-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:33.5963127Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0bc-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0bc-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:33.6283440Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0bd-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0bd-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:33.6583733Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0be-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0be-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:33.6894020Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0bf-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0bf-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:31:33.7204308Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0c0-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0c0-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:31:33.7514609Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:32 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0c1-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0c1-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:31:33.7824905Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0c3-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0c3-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:31:33.8135197Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0c4-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0c4-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:31:33.8475510Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0c5-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0c5-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:31:33.8775804Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0c6-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0c6-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:31:33.9096098Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0c7-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0c7-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:31:33.9396397Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0c8-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0c8-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:31:33.9696677Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0c9-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0c9-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:31:33.9986949Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ca-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ca-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:31:34.0307262Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0cb-101a-010f-030a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0cb-101a-010f-030a-449bd5000000\nTime:2019-07-26T23:31:34.0677597Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0cc-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0cc-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:31:34.0987903Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0cd-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0cd-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:31:34.1288178Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ce-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ce-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:31:34.1638535Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0cf-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0cf-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:31:34.1918778Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d0-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d0-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:31:34.2219072Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d1-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d1-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:31:34.2509344Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d2-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d2-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:31:34.2799612Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d3-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d3-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:31:34.3099897Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d4-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d4-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:31:34.3390179Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d5-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d5-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:31:34.3680447Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d6-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d6-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:31:34.3950706Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d7-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d7-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:31:34.4250986Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d8-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d8-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:31:34.4561282Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0d9-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0d9-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:31:34.4851555Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0da-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0da-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:31:34.5161847Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0db-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0db-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:31:34.5462134Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0dc-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0dc-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:31:34.5752413Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0dd-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0dd-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:31:34.6052709Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0de-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0de-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:31:34.6383022Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0df-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0df-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:31:34.6683304Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e0-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e0-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:31:34.6973588Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e1-101a-010f-190a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e1-101a-010f-190a-449bd5000000\nTime:2019-07-26T23:31:34.7293893Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:33 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e2-101a-010f-1a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e2-101a-010f-1a0a-449bd5000000\nTime:2019-07-26T23:31:34.7614189Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e3-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e3-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:31:34.7914485Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e4-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e4-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:31:34.8224774Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e5-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e5-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:31:34.8535078Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e6-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e6-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:31:34.8845371Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e7-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e7-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:31:34.9135646Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e8-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e8-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:31:34.9465954Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0e9-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0e9-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:31:34.9766241Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ea-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ea-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:31:35.0086546Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0eb-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0eb-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:31:35.0396845Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ec-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ec-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:31:35.0717146Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ed-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ed-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:31:35.1027449Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ee-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ee-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:31:35.1337747Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ef-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ef-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:31:35.1648041Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50527b7f2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f0-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f0-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:31:35.1958335Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f1-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f1-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:31:35.2268633Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f2-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f2-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:31:35.2588939Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f3-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f3-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:31:35.2899237Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f4-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f4-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:31:35.3209531Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f5-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f5-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:31:35.3519829Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f6-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f6-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:31:35.3840135Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f7-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f7-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:31:35.4140421Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f8-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f8-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:31:35.4420689Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0f9-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0f9-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:31:35.4720980Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0fa-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0fa-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:31:35.5001252Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0fb-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0fb-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:31:35.5301523Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0fc-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0fc-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:31:35.5601808Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0fd-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0fd-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:31:35.5912100Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0fe-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0fe-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:31:35.6232408Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea0ff-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea0ff-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:31:35.6542709Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea100-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea100-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:31:35.6832977Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea101-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea101-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:31:35.7193332Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea102-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea102-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:31:35.7493612Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:34 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea103-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea103-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:31:35.7793897Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea104-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea104-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:31:35.8114186Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea105-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea105-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:31:35.8414476Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea106-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea106-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:31:35.8724772Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea107-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea107-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:31:35.9165189Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea108-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea108-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:31:35.9465474Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea109-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea109-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:31:35.9775766Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea10a-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea10a-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:31:36.0076055Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea10b-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea10b-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:31:36.0436396Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea10c-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea10c-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:31:36.0726669Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea10d-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea10d-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:31:36.1036952Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea10e-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea10e-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:31:36.1357260Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea10f-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea10f-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:31:36.1647574Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea110-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea110-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:31:36.1927817Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea111-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea111-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:31:36.2228083Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea112-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea112-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:31:36.2578426Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea113-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea113-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:31:36.2888718Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea115-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea115-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:31:36.3199019Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea116-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea116-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:31:36.3509297Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea117-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea117-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:31:36.3859636Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea118-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea118-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:31:36.4169923Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea119-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea119-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:31:36.4460205Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea11a-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea11a-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:31:36.4810539Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea11b-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea11b-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:31:36.5100808Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea11c-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea11c-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:31:36.5401101Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea11d-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea11d-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:31:36.5721396Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea11e-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea11e-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:31:36.6001661Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea11f-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea11f-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:31:36.6291953Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea120-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea120-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:31:36.6582216Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea121-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea121-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:31:36.6962577Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea122-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea122-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:31:36.7262856Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea123-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea123-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:31:36.7573153Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:35 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea124-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea124-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:31:36.7883445Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea125-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea125-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:31:36.8233784Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea126-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea126-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:31:36.9014524Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea129-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea129-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:31:36.9364849Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea12a-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea12a-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:31:36.9685157Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea12b-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea12b-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:31:37.0005456Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea12c-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea12c-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:31:37.0305745Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea12d-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea12d-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:31:37.0626044Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea12e-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea12e-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:31:37.0956359Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea132-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea132-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:31:37.1276667Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea133-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea133-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:31:37.1596966Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea134-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea134-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:31:37.1897251Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea135-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea135-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:31:37.2197540Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea136-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea136-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:31:37.2527846Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea137-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea137-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:31:37.2828135Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea138-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea138-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:31:37.3138427Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea139-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea139-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:31:37.3468742Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea13a-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea13a-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:31:37.3769027Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea13b-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea13b-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:31:37.4089326Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea13c-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea13c-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:31:37.4409634Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea13d-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea13d-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:31:37.4719930Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea13e-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea13e-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:31:37.5080267Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea13f-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea13f-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:31:37.5380552Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea140-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea140-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:31:37.5690844Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea141-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea141-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:31:37.6011142Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86bea142-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86bea142-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:31:37.6311436Z",
+ "Date" : "Fri, 26 Jul 2019 23:31:36 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share66999f9c" ]
+ "variables" : [ "share64720cbb" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidQuotaFromShareClient.json b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidQuotaFromShareClient.json
index 768a60b78cadd..761252cd61091 100644
--- a/storage/client/file/src/test/resources/session-records/setPropertiesInvalidQuotaFromShareClient.json
+++ b/storage/client/file/src/test/resources/session-records/setPropertiesInvalidQuotaFromShareClient.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share46729b2d?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share963952fa?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,17 +9,17 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C788159EC\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "ETag" : "\"0x8D7122093C0C2FE\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:42 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d3a-001a-006b-3d75-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "x-ms-request-id" : "86be8527-101a-010f-3809-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share46729b2d?restype=share&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share963952fa?restype=share&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -31,14 +31,14 @@
"retry-after" : "0",
"Content-Length" : "324",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781d3c-001a-006b-3e75-4192c4000000",
- "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:a4781d3c-001a-006b-3e75-4192c4000000\nTime:2019-07-23T16:40:28.8296045Zx-ms-share-quota-1",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "x-ms-request-id" : "86be8529-101a-010f-3909-449bd5000000",
+ "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:86be8529-101a-010f-3909-449bd5000000\nTime:2019-07-26T23:25:42.3681856Zx-ms-share-quota-1",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share46729b2d?restype=share&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share963952fa?restype=share&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,14 +50,14 @@
"retry-after" : "0",
"Content-Length" : "326",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781d3d-001a-006b-3f75-4192c4000000",
- "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:a4781d3d-001a-006b-3f75-4192c4000000\nTime:2019-07-23T16:40:28.8756373Zx-ms-share-quota9999",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "x-ms-request-id" : "86be852a-101a-010f-3a09-449bd5000000",
+ "Body" : "InvalidHeaderValue
The value for one of the HTTP headers is not in the correct format.\nRequestId:86be852a-101a-010f-3a09-449bd5000000\nTime:2019-07-26T23:25:42.3952124Zx-ms-share-quota9999",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share46729b2d?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share963952fa?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -68,9 +68,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781d3e-001a-006b-4075-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT"
+ "x-ms-request-id" : "86be852b-101a-010f-3b09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT"
}
} ],
- "variables" : [ "share46729b2d" ]
+ "variables" : [ "share963952fa" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/setPropertiesTooManyRules.json b/storage/client/file/src/test/resources/session-records/setPropertiesTooManyRules.json
index 885ff107c99ed..6bf3f0525f418 100644
--- a/storage/client/file/src/test/resources/session-records/setPropertiesTooManyRules.json
+++ b/storage/client/file/src/test/resources/session-records/setPropertiesTooManyRules.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -14,14 +14,14 @@
"retry-after" : "0",
"Content-Length" : "294",
"StatusCode" : "400",
- "x-ms-request-id" : "a4781f7e-001a-006b-6e75-4192c4000000",
- "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:a4781f7e-001a-006b-6e75-4192c4000000\nTime:2019-07-23T16:43:44.6374670Z00",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "x-ms-request-id" : "86be97b6-101a-010f-480a-449bd5000000",
+ "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:86be97b6-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:22.3297847Z00",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net?prefix=share41569da0&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net?include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,2823 @@
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "a4781f7f-001a-006b-6f75-4192c4000000",
- "Body" : "share41569da0",
- "Date" : "Tue, 23 Jul 2019 16:43:43 GMT",
+ "x-ms-request-id" : "86be97b7-101a-010f-490a-449bd5000000",
+ "Body" : "share00647b910Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742C3F60C\"2share00647b912Fri, 26 Jul 2019 20:24:29 GMT\"0x8D7120742D5D4BB\"2share023786e1Fri, 26 Jul 2019 20:17:51 GMT\"0x8D71206559E6985\"2share0338648fFri, 26 Jul 2019 21:14:25 GMT\"0x8D7120E3CCB0AF3\"2share047674110Fri, 26 Jul 2019 20:24:16 GMT\"0x8D712073B3C296A\"2share047674112Fri, 26 Jul 2019 20:24:17 GMT\"0x8D712073BC7C271\"2share04894a98Fri, 26 Jul 2019 18:54:13 GMT\"0x8D711FAA6FD95A1\"5120share058926b7Fri, 26 Jul 2019 19:19:46 GMT\"0x8D711FE38C7B146\"2share067091e1Fri, 26 Jul 2019 21:49:12 GMT\"0x8D712131874E106\"2share067818daFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1EA5E4DD\"2share07553283Fri, 26 Jul 2019 21:49:11 GMT\"0x8D71213184847CD\"5120share08019c680Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB593A1F03\"2share08019c682Fri, 26 Jul 2019 18:59:12 GMT\"0x8D711FB594BFDAC\"2share090580b0Fri, 26 Jul 2019 20:14:06 GMT\"0x8D71205CF90914E\"2share12497974Fri, 26 Jul 2019 20:10:35 GMT\"0x8D71205522317F1\"5120share13194301Fri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318CD7711\"2share1461365eFri, 26 Jul 2019 19:20:39 GMT\"0x8D711FE580D2B98\"2share1471432dFri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B0A6FD0D\"2share15805b900Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E510D6E\"2share15805b902Fri, 26 Jul 2019 21:20:17 GMT\"0x8D7120F0E649A25\"2share165757f6Fri, 26 Jul 2019 20:17:50 GMT\"0x8D7120655619FB2\"5120share18125db3Fri, 26 Jul 2019 21:14:24 GMT\"0x8D7120E3C65EF0F\"2share18170c97Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D03ED5E0\"5120share182212b50Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F1702F984\"2share182212b52Fri, 26 Jul 2019 21:20:31 GMT\"0x8D7120F17159BB6\"2share20065e58Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B06CA67\"2share20354259Fri, 26 Jul 2019 23:26:30 GMT\"0x8D71220B040CF5F\"2share21294ed9Fri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD8097F12\"2share22340476Fri, 26 Jul 2019 21:46:44 GMT\"0x8D71212C07FAC62\"5120share223865e2Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC38AFC5\"2share225308c7Fri, 26 Jul 2019 23:24:03 GMT\"0x8D7122058F53E93\"2share24259addFri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E9403AAC4\"2share2507499dFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB0084A0C9\"2share25624b11Fri, 26 Jul 2019 20:21:10 GMT\"0x8D71206CC9D2FA6\"2share2667597fFri, 26 Jul 2019 20:18:43 GMT\"0x8D7120674BCBF2B\"2share271588afFri, 26 Jul 2019 18:56:45 GMT\"0x8D711FB014AB928\"5120share27906e3bFri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E764A0651\"2share28008146Fri, 26 Jul 2019 19:09:08 GMT\"0x8D711FCBC0B11C4\"5120share28057a16Fri, 26 Jul 2019 20:10:38 GMT\"0x8D7120553948D5C\"5120share281737280Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F655A70\"2share281737282Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1F762764\"2share28312006Fri, 26 Jul 2019 20:11:26 GMT\"0x8D712057036030C\"2share290663c8Fri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AE854007\"5120share29486e1aFri, 26 Jul 2019 21:13:35 GMT\"0x8D7120E1F2E21A7\"2share2977154fFri, 26 Jul 2019 21:49:14 GMT\"0x8D7121319B1F4E5\"5120share30341704Fri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092B0978D\"5120share31437c63Fri, 26 Jul 2019 21:16:51 GMT\"0x8D7120E93AC4DD1\"2share31471b7eFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61D53F14\"2share32523163Fri, 26 Jul 2019 19:20:40 GMT\"0x8D711FE58897E2C\"2share330285eeFri, 26 Jul 2019 23:23:11 GMT\"0x8D7122039DF8EBD\"5120share33848cb5Fri, 26 Jul 2019 20:17:52 GMT\"0x8D71206562806DA\"2share34364d47Fri, 26 Jul 2019 21:46:48 GMT\"0x8D71212C2BBAA1E\"5120share3666393bFri, 26 Jul 2019 20:10:35 GMT\"0x8D71205520ACF1D\"2share3910192aFri, 26 Jul 2019 20:20:22 GMT\"0x8D71206B0145892\"5120share391562b5Fri, 26 Jul 2019 20:14:57 GMT\"0x8D71205EDCDD127\"2share39454d3cFri, 26 Jul 2019 20:11:25 GMT\"0x8D712056FD15C93\"2share402510a4Fri, 26 Jul 2019 23:25:43 GMT\"0x8D7122094614894\"5120share40438ae4Fri, 26 Jul 2019 23:24:04 GMT\"0x8D712205948CA25\"2share419315aaFri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC80F50F30\"2share419726ecFri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBA88F53D\"5120share42440e44Fri, 26 Jul 2019 21:47:36 GMT\"0x8D71212DF4FF53D\"2share42706de2Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1A20570\"5120share42982776Fri, 26 Jul 2019 21:50:00 GMT\"0x8D71213358E8281\"2share4333416fFri, 26 Jul 2019 18:56:43 GMT\"0x8D711FB002B6E7C\"2share4390933bFri, 26 Jul 2019 19:19:44 GMT\"0x8D711FE379B6D29\"5120share44893313Fri, 26 Jul 2019 21:13:36 GMT\"0x8D7120E1F5057F6\"5120share45426be8Fri, 26 Jul 2019 19:06:35 GMT\"0x8D711FC613D1FA9\"2share45583df7Fri, 26 Jul 2019 19:07:28 GMT\"0x8D711FC808BFA75\"2share486142ebFri, 26 Jul 2019 20:14:56 GMT\"0x8D71205ED78979A\"2share4906185dFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76D7C2B5\"5120share501963720Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134AAC6633\"2share501963722Fri, 26 Jul 2019 21:50:36 GMT\"0x8D712134ABE44F5\"2share50730d1fFri, 26 Jul 2019 21:50:01 GMT\"0x8D7121335E3953D\"2share50758ebf0Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB6073DC\"2share50758ebf2Fri, 26 Jul 2019 20:21:35 GMT\"0x8D71206DB720467\"2share50841b82Fri, 26 Jul 2019 20:14:07 GMT\"0x8D71205D01FD4AB\"2share51069796Fri, 26 Jul 2019 18:57:32 GMT\"0x8D711FB1D714DAB\"2share51268352Fri, 26 Jul 2019 19:19:52 GMT\"0x8D711FE3C1029C2\"5120share55306c18Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220936BB088\"2share56546d050Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BAA8D6C8\"2share56546d052Fri, 26 Jul 2019 21:53:44 GMT\"0x8D71213BABB51DB\"2share56592e61Fri, 26 Jul 2019 18:56:43 GMT\"0x8D711FAFFFE11DF\"5120share56766957Fri, 26 Jul 2019 21:47:35 GMT\"0x8D71212DEE6B92B\"2share57107671Fri, 26 Jul 2019 19:06:39 GMT\"0x8D711FC63CC0B83\"5120share57160feb0Fri, 26 Jul 2019 20:21:47 GMT\"0x8D71206E2BF2EEE\"2share57160feb2Fri, 26 Jul 2019 20:21:48 GMT\"0x8D71206E2D134C7\"2share574940c70Fri, 26 Jul 2019 18:57:34 GMT\"0x8D711FB1EE55CC1\"2share574940c72Fri, 26 Jul 2019 18:57:35 GMT\"0x8D711FB1EF629BC\"2share59312cfbFri, 26 Jul 2019 23:23:12 GMT\"0x8D712203A81261A\"2share601391ea0Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA64E203A\"2share601391ea2Fri, 26 Jul 2019 21:17:22 GMT\"0x8D7120EA65FFEF9\"2share60655c75Fri, 26 Jul 2019 23:23:13 GMT\"0x8D712203B23F67B\"5120share6098536bFri, 26 Jul 2019 21:13:34 GMT\"0x8D7120E1E634D6A\"5120share61118451Fri, 26 Jul 2019 18:54:16 GMT\"0x8D711FAA85CDF0B\"5120share62465f330Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE365DB58\"2share62465f332Fri, 26 Jul 2019 19:10:14 GMT\"0x8D711FCE378F2D7\"2share62655cebFri, 26 Jul 2019 21:16:02 GMT\"0x8D7120E76AE5EAE\"2share645448460Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4E3EEBD\"2share645448462Fri, 26 Jul 2019 21:54:01 GMT\"0x8D71213C4F642C2\"2share64904824Fri, 26 Jul 2019 20:17:52 GMT\"0x8D712065652075F\"5120share65962335Fri, 26 Jul 2019 20:17:56 GMT\"0x8D7120658918860\"5120share6613297dFri, 26 Jul 2019 21:49:12 GMT\"0x8D7121318E48741\"5120share67484ef6Fri, 26 Jul 2019 23:23:16 GMT\"0x8D712203CB72D49\"5120share69198b9cFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE394F50F3\"2share69376acb0Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DBDD2D7\"2share69376acb2Fri, 26 Jul 2019 19:12:18 GMT\"0x8D711FD2DCE0371\"2share71260c730Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C974D6FB\"2share71260c732Fri, 26 Jul 2019 23:27:12 GMT\"0x8D71220C985A3EE\"2share72843690Fri, 26 Jul 2019 19:09:05 GMT\"0x8D711FCBABFF138\"2share73533cfdFri, 26 Jul 2019 18:56:44 GMT\"0x8D711FB009DFB53\"5120share73858b48Fri, 26 Jul 2019 23:25:41 GMT\"0x8D71220938A1555\"5120share75564ef5Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB46CE6C\"5120share75603ccfFri, 26 Jul 2019 20:18:44 GMT\"0x8D71206752B538F\"2share7571599bFri, 26 Jul 2019 20:14:05 GMT\"0x8D71205CF314334\"5120share7654162cFri, 26 Jul 2019 21:13:37 GMT\"0x8D7120E2064A368\"5120share77593c8bFri, 26 Jul 2019 19:09:55 GMT\"0x8D711FCD86B6618\"2share781167f1Fri, 26 Jul 2019 21:46:46 GMT\"0x8D71212C1787A40\"2share7839427bFri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6781CBF\"2share811078e30Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A4C17F5\"2share811078e32Fri, 26 Jul 2019 19:12:13 GMT\"0x8D711FD2A608F58\"2share81208ff7Fri, 26 Jul 2019 21:16:04 GMT\"0x8D7120E77A9281D\"5120share81275d3c0Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354DE2CE5\"2share81275d3c2Fri, 26 Jul 2019 21:50:53 GMT\"0x8D7121354EED2C9\"2share8149487eFri, 26 Jul 2019 19:19:47 GMT\"0x8D711FE396FB1F0\"5120share8204845dFri, 26 Jul 2019 18:54:15 GMT\"0x8D711FAA840284B\"2share82193f0eFri, 26 Jul 2019 19:06:34 GMT\"0x8D711FC60807F6E\"5120share82394f22Fri, 26 Jul 2019 18:55:06 GMT\"0x8D711FAC6252D92\"2share83640d3dFri, 26 Jul 2019 19:06:36 GMT\"0x8D711FC61F52AF3\"5120share838615e00Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59B84772\"2share838615e02Fri, 26 Jul 2019 18:59:13 GMT\"0x8D711FB59C8ED55\"2share84035c2d0Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFDA76DE\"2share84035c2d2Fri, 26 Jul 2019 19:10:08 GMT\"0x8D711FCDFEC0754\"2share84947509Fri, 26 Jul 2019 19:09:06 GMT\"0x8D711FCBB2EACA3\"2share85738125Fri, 26 Jul 2019 18:57:31 GMT\"0x8D711FB1D1CFE98\"2share8640173bFri, 26 Jul 2019 23:25:40 GMT\"0x8D7122092F41992\"2share875133cfFri, 26 Jul 2019 20:10:33 GMT\"0x8D7120551021FB9\"5120share88894e1eFri, 26 Jul 2019 20:20:20 GMT\"0x8D71206AEBC6322\"2share902567c8Fri, 26 Jul 2019 20:14:09 GMT\"0x8D71205D17AD702\"5120share91246a6fFri, 26 Jul 2019 18:54:18 GMT\"0x8D711FAA9F807BB\"5120share91457383Fri, 26 Jul 2019 21:16:01 GMT\"0x8D7120E76194D96\"5120share92956104Fri, 26 Jul 2019 21:46:45 GMT\"0x8D71212C0EF2B56\"2share939310ceFri, 26 Jul 2019 20:10:34 GMT\"0x8D712055196E29E\"2share95273efa0Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF3F7B2A\"2share95273efa2Fri, 26 Jul 2019 21:17:37 GMT\"0x8D7120EAF4FFA00\"2share9863815b0Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D565A27E\"2share9863815b2Fri, 26 Jul 2019 23:27:32 GMT\"0x8D71220D5769697\"2share990432c7Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF405993\"5120share99203b84Fri, 26 Jul 2019 20:20:21 GMT\"0x8D71206AF2529BB\"2",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b910?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97b8-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97b8-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:22.4458964Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share00647b912?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97b9-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97b9-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:22.4749234Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share023786e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ba-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ba-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:22.5059542Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share0338648f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97bb-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97bb-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:22.5369826Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674110?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97bc-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97bc-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:22.5700144Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share047674112?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97bd-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97bd-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:22.6000425Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share04894a98?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97be-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97be-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:22.6320745Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share058926b7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97bf-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97bf-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:22.6641041Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:21 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067091e1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97c1-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97c1-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:22.6981366Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share067818da?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97c2-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97c2-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:22.7301672Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share07553283?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97c3-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97c3-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:22.7611975Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c680?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97c5-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97c5-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:22.7962301Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share08019c682?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97c6-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97c6-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:22.8282604Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share090580b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97c7-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97c7-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:22.8602922Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share12497974?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97c8-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97c8-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:22.8933219Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share13194301?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97c9-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97c9-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:22.9233512Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1461365e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ca-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ca-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:22.9533802Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share1471432d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97cb-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97cb-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:22.9844084Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b900?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97cc-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97cc-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:23.0174404Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share15805b902?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97cd-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97cd-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:23.0504705Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share165757f6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ce-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ce-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:23.0815002Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18125db3?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97cf-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97cf-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:23.1135310Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share18170c97?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d0-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d0-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:23.1455623Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b50?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d1-101a-010f-610a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d1-101a-010f-610a-449bd5000000\nTime:2019-07-26T23:30:23.1755898Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share182212b52?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d2-101a-010f-620a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d2-101a-010f-620a-449bd5000000\nTime:2019-07-26T23:30:23.2096216Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20065e58?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d3-101a-010f-630a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d3-101a-010f-630a-449bd5000000\nTime:2019-07-26T23:30:23.2406512Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d4-101a-010f-640a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d4-101a-010f-640a-449bd5000000\nTime:2019-07-26T23:30:23.2736832Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share21294ed9?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d5-101a-010f-650a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d5-101a-010f-650a-449bd5000000\nTime:2019-07-26T23:30:23.3057136Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share22340476?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d6-101a-010f-660a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d6-101a-010f-660a-449bd5000000\nTime:2019-07-26T23:30:23.3397449Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share223865e2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d7-101a-010f-670a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d7-101a-010f-670a-449bd5000000\nTime:2019-07-26T23:30:23.3737772Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share225308c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d8-101a-010f-680a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d8-101a-010f-680a-449bd5000000\nTime:2019-07-26T23:30:23.4118132Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share24259add?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97d9-101a-010f-690a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97d9-101a-010f-690a-449bd5000000\nTime:2019-07-26T23:30:23.4438436Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2507499d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97da-101a-010f-6a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97da-101a-010f-6a0a-449bd5000000\nTime:2019-07-26T23:30:23.4758739Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share25624b11?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97db-101a-010f-6b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97db-101a-010f-6b0a-449bd5000000\nTime:2019-07-26T23:30:23.5049035Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2667597f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97dc-101a-010f-6c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97dc-101a-010f-6c0a-449bd5000000\nTime:2019-07-26T23:30:23.5339289Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share271588af?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97dd-101a-010f-6d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97dd-101a-010f-6d0a-449bd5000000\nTime:2019-07-26T23:30:23.5649581Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share27906e3b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97de-101a-010f-6e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97de-101a-010f-6e0a-449bd5000000\nTime:2019-07-26T23:30:23.5939868Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28008146?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97df-101a-010f-6f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97df-101a-010f-6f0a-449bd5000000\nTime:2019-07-26T23:30:23.6240139Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28057a16?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97e0-101a-010f-700a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97e0-101a-010f-700a-449bd5000000\nTime:2019-07-26T23:30:23.6550440Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:22 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737280?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97e1-101a-010f-710a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97e1-101a-010f-710a-449bd5000000\nTime:2019-07-26T23:30:23.6850733Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share281737282?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97e3-101a-010f-720a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97e3-101a-010f-720a-449bd5000000\nTime:2019-07-26T23:30:23.7161016Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share28312006?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97e4-101a-010f-730a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97e4-101a-010f-730a-449bd5000000\nTime:2019-07-26T23:30:23.7491331Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share290663c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97e5-101a-010f-740a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97e5-101a-010f-740a-449bd5000000\nTime:2019-07-26T23:30:23.7801618Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share29486e1a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97e6-101a-010f-750a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97e6-101a-010f-750a-449bd5000000\nTime:2019-07-26T23:30:23.8101917Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share2977154f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97e7-101a-010f-760a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97e7-101a-010f-760a-449bd5000000\nTime:2019-07-26T23:30:23.8412204Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share30341704?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97e8-101a-010f-770a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97e8-101a-010f-770a-449bd5000000\nTime:2019-07-26T23:30:23.8732503Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31437c63?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97e9-101a-010f-780a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97e9-101a-010f-780a-449bd5000000\nTime:2019-07-26T23:30:23.9042804Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share31471b7e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ea-101a-010f-790a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ea-101a-010f-790a-449bd5000000\nTime:2019-07-26T23:30:23.9353096Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share32523163?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97eb-101a-010f-7a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97eb-101a-010f-7a0a-449bd5000000\nTime:2019-07-26T23:30:23.9673399Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share330285ee?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ec-101a-010f-7b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ec-101a-010f-7b0a-449bd5000000\nTime:2019-07-26T23:30:23.9983691Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share33848cb5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ed-101a-010f-7c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ed-101a-010f-7c0a-449bd5000000\nTime:2019-07-26T23:30:24.0304004Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share34364d47?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ee-101a-010f-7d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ee-101a-010f-7d0a-449bd5000000\nTime:2019-07-26T23:30:24.0624298Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3666393b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ef-101a-010f-7e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ef-101a-010f-7e0a-449bd5000000\nTime:2019-07-26T23:30:24.0934599Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share3910192a?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97f0-101a-010f-7f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97f0-101a-010f-7f0a-449bd5000000\nTime:2019-07-26T23:30:24.1254898Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share391562b5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97f1-101a-010f-800a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97f1-101a-010f-800a-449bd5000000\nTime:2019-07-26T23:30:24.1635258Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share39454d3c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97f2-101a-010f-010a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97f2-101a-010f-010a-449bd5000000\nTime:2019-07-26T23:30:24.1955567Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97f3-101a-010f-020a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97f3-101a-010f-020a-449bd5000000\nTime:2019-07-26T23:30:24.2275865Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share40438ae4?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97f5-101a-010f-040a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97f5-101a-010f-040a-449bd5000000\nTime:2019-07-26T23:30:24.2586153Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419315aa?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97f6-101a-010f-050a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97f6-101a-010f-050a-449bd5000000\nTime:2019-07-26T23:30:24.2956506Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share419726ec?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97f7-101a-010f-060a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97f7-101a-010f-060a-449bd5000000\nTime:2019-07-26T23:30:24.3266807Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42440e44?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97f8-101a-010f-070a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97f8-101a-010f-070a-449bd5000000\nTime:2019-07-26T23:30:24.3587106Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42706de2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97f9-101a-010f-080a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97f9-101a-010f-080a-449bd5000000\nTime:2019-07-26T23:30:24.3917417Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share42982776?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97fa-101a-010f-090a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97fa-101a-010f-090a-449bd5000000\nTime:2019-07-26T23:30:24.4247732Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4333416f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97fb-101a-010f-0a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97fb-101a-010f-0a0a-449bd5000000\nTime:2019-07-26T23:30:24.4558024Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4390933b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97fc-101a-010f-0b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97fc-101a-010f-0b0a-449bd5000000\nTime:2019-07-26T23:30:24.4848306Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share44893313?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97fd-101a-010f-0c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97fd-101a-010f-0c0a-449bd5000000\nTime:2019-07-26T23:30:24.5138574Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45426be8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97fe-101a-010f-0d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97fe-101a-010f-0d0a-449bd5000000\nTime:2019-07-26T23:30:24.5428851Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share45583df7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be97ff-101a-010f-0e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be97ff-101a-010f-0e0a-449bd5000000\nTime:2019-07-26T23:30:24.5719124Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share486142eb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9800-101a-010f-0f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9800-101a-010f-0f0a-449bd5000000\nTime:2019-07-26T23:30:24.6029416Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share4906185d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9801-101a-010f-100a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9801-101a-010f-100a-449bd5000000\nTime:2019-07-26T23:30:24.6399778Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963720?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9802-101a-010f-110a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9802-101a-010f-110a-449bd5000000\nTime:2019-07-26T23:30:24.6720082Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:23 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share501963722?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9803-101a-010f-120a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9803-101a-010f-120a-449bd5000000\nTime:2019-07-26T23:30:24.7010350Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50730d1f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9804-101a-010f-130a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9804-101a-010f-130a-449bd5000000\nTime:2019-07-26T23:30:24.7330654Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9805-101a-010f-140a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9805-101a-010f-140a-449bd5000000\nTime:2019-07-26T23:30:24.7660964Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50758ebf2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9806-101a-010f-150a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9806-101a-010f-150a-449bd5000000\nTime:2019-07-26T23:30:24.7991280Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share50841b82?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9807-101a-010f-160a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9807-101a-010f-160a-449bd5000000\nTime:2019-07-26T23:30:24.8301576Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51069796?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9808-101a-010f-170a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9808-101a-010f-170a-449bd5000000\nTime:2019-07-26T23:30:24.8631887Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share51268352?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9809-101a-010f-180a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9809-101a-010f-180a-449bd5000000\nTime:2019-07-26T23:30:24.8982216Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share55306c18?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be980c-101a-010f-1b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be980c-101a-010f-1b0a-449bd5000000\nTime:2019-07-26T23:30:24.9302525Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d050?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be980d-101a-010f-1c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be980d-101a-010f-1c0a-449bd5000000\nTime:2019-07-26T23:30:24.9612830Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56546d052?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be980e-101a-010f-1d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be980e-101a-010f-1d0a-449bd5000000\nTime:2019-07-26T23:30:24.9933125Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56592e61?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be980f-101a-010f-1e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be980f-101a-010f-1e0a-449bd5000000\nTime:2019-07-26T23:30:25.0253419Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share56766957?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9810-101a-010f-1f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9810-101a-010f-1f0a-449bd5000000\nTime:2019-07-26T23:30:25.0573732Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57107671?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9811-101a-010f-200a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9811-101a-010f-200a-449bd5000000\nTime:2019-07-26T23:30:25.0914049Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9812-101a-010f-210a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9812-101a-010f-210a-449bd5000000\nTime:2019-07-26T23:30:25.1244360Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share57160feb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9813-101a-010f-220a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9813-101a-010f-220a-449bd5000000\nTime:2019-07-26T23:30:25.1564668Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c70?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9814-101a-010f-230a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9814-101a-010f-230a-449bd5000000\nTime:2019-07-26T23:30:25.1894979Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share574940c72?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9815-101a-010f-240a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9815-101a-010f-240a-449bd5000000\nTime:2019-07-26T23:30:25.2195268Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share59312cfb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9816-101a-010f-250a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9816-101a-010f-250a-449bd5000000\nTime:2019-07-26T23:30:25.2525574Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9817-101a-010f-260a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9817-101a-010f-260a-449bd5000000\nTime:2019-07-26T23:30:25.2875909Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share601391ea2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9818-101a-010f-270a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9818-101a-010f-270a-449bd5000000\nTime:2019-07-26T23:30:25.3196217Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share60655c75?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9819-101a-010f-280a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9819-101a-010f-280a-449bd5000000\nTime:2019-07-26T23:30:25.3516516Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6098536b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be981a-101a-010f-290a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be981a-101a-010f-290a-449bd5000000\nTime:2019-07-26T23:30:25.3856838Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share61118451?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be981b-101a-010f-2a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be981b-101a-010f-2a0a-449bd5000000\nTime:2019-07-26T23:30:25.4177142Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f330?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be981c-101a-010f-2b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be981c-101a-010f-2b0a-449bd5000000\nTime:2019-07-26T23:30:25.4497445Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62465f332?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be981d-101a-010f-2c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be981d-101a-010f-2c0a-449bd5000000\nTime:2019-07-26T23:30:25.4817758Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share62655ceb?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be981e-101a-010f-2d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be981e-101a-010f-2d0a-449bd5000000\nTime:2019-07-26T23:30:25.5128050Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448460?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be981f-101a-010f-2e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be981f-101a-010f-2e0a-449bd5000000\nTime:2019-07-26T23:30:25.5458356Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share645448462?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9820-101a-010f-2f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9820-101a-010f-2f0a-449bd5000000\nTime:2019-07-26T23:30:25.5808686Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share64904824?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9821-101a-010f-300a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9821-101a-010f-300a-449bd5000000\nTime:2019-07-26T23:30:25.6128994Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share65962335?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9822-101a-010f-310a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9822-101a-010f-310a-449bd5000000\nTime:2019-07-26T23:30:25.6439290Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share6613297d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9823-101a-010f-320a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9823-101a-010f-320a-449bd5000000\nTime:2019-07-26T23:30:25.6749577Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:24 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share67484ef6?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9824-101a-010f-330a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9824-101a-010f-330a-449bd5000000\nTime:2019-07-26T23:30:25.7059883Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69198b9c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9825-101a-010f-340a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9825-101a-010f-340a-449bd5000000\nTime:2019-07-26T23:30:25.7380177Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9826-101a-010f-350a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9826-101a-010f-350a-449bd5000000\nTime:2019-07-26T23:30:25.7700481Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share69376acb2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9827-101a-010f-360a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9827-101a-010f-360a-449bd5000000\nTime:2019-07-26T23:30:25.8030792Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c730?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9828-101a-010f-370a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9828-101a-010f-370a-449bd5000000\nTime:2019-07-26T23:30:25.8361107Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share71260c732?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9829-101a-010f-380a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9829-101a-010f-380a-449bd5000000\nTime:2019-07-26T23:30:25.8681410Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share72843690?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be982a-101a-010f-390a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be982a-101a-010f-390a-449bd5000000\nTime:2019-07-26T23:30:25.9021738Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73533cfd?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be982b-101a-010f-3a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be982b-101a-010f-3a0a-449bd5000000\nTime:2019-07-26T23:30:25.9322013Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share73858b48?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be982c-101a-010f-3b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be982c-101a-010f-3b0a-449bd5000000\nTime:2019-07-26T23:30:25.9612304Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75564ef5?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be982d-101a-010f-3c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be982d-101a-010f-3c0a-449bd5000000\nTime:2019-07-26T23:30:25.9922591Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share75603ccf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be982e-101a-010f-3d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be982e-101a-010f-3d0a-449bd5000000\nTime:2019-07-26T23:30:26.0252902Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7571599b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be982f-101a-010f-3e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be982f-101a-010f-3e0a-449bd5000000\nTime:2019-07-26T23:30:26.0553187Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7654162c?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9830-101a-010f-3f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9830-101a-010f-3f0a-449bd5000000\nTime:2019-07-26T23:30:26.0873500Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share77593c8b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9831-101a-010f-400a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9831-101a-010f-400a-449bd5000000\nTime:2019-07-26T23:30:26.1183782Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share781167f1?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9832-101a-010f-410a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9832-101a-010f-410a-449bd5000000\nTime:2019-07-26T23:30:26.1504081Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share7839427b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9833-101a-010f-420a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9833-101a-010f-420a-449bd5000000\nTime:2019-07-26T23:30:26.1814377Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e30?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9835-101a-010f-430a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9835-101a-010f-430a-449bd5000000\nTime:2019-07-26T23:30:26.2114662Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share811078e32?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9836-101a-010f-440a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9836-101a-010f-440a-449bd5000000\nTime:2019-07-26T23:30:26.2475008Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81208ff7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9837-101a-010f-450a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9837-101a-010f-450a-449bd5000000\nTime:2019-07-26T23:30:26.2795316Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9838-101a-010f-460a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9838-101a-010f-460a-449bd5000000\nTime:2019-07-26T23:30:26.3195686Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share81275d3c2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9839-101a-010f-470a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9839-101a-010f-470a-449bd5000000\nTime:2019-07-26T23:30:26.3505978Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8149487e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be983a-101a-010f-480a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be983a-101a-010f-480a-449bd5000000\nTime:2019-07-26T23:30:26.3806267Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8204845d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be983b-101a-010f-490a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be983b-101a-010f-490a-449bd5000000\nTime:2019-07-26T23:30:26.4126575Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82193f0e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be983c-101a-010f-4a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be983c-101a-010f-4a0a-449bd5000000\nTime:2019-07-26T23:30:26.4436867Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share82394f22?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be983d-101a-010f-4b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be983d-101a-010f-4b0a-449bd5000000\nTime:2019-07-26T23:30:26.4757171Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share83640d3d?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be983e-101a-010f-4c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be983e-101a-010f-4c0a-449bd5000000\nTime:2019-07-26T23:30:26.5077479Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e00?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be983f-101a-010f-4d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be983f-101a-010f-4d0a-449bd5000000\nTime:2019-07-26T23:30:26.5387780Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share838615e02?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9840-101a-010f-4e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9840-101a-010f-4e0a-449bd5000000\nTime:2019-07-26T23:30:26.5708084Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9841-101a-010f-4f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9841-101a-010f-4f0a-449bd5000000\nTime:2019-07-26T23:30:26.6008354Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84035c2d2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9842-101a-010f-500a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9842-101a-010f-500a-449bd5000000\nTime:2019-07-26T23:30:26.6328667Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share84947509?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9843-101a-010f-510a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9843-101a-010f-510a-449bd5000000\nTime:2019-07-26T23:30:26.6648961Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:25 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share85738125?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9844-101a-010f-520a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9844-101a-010f-520a-449bd5000000\nTime:2019-07-26T23:30:26.7049341Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9845-101a-010f-530a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9845-101a-010f-530a-449bd5000000\nTime:2019-07-26T23:30:26.7419689Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share875133cf?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9846-101a-010f-540a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9846-101a-010f-540a-449bd5000000\nTime:2019-07-26T23:30:26.7729995Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share88894e1e?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9847-101a-010f-550a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9847-101a-010f-550a-449bd5000000\nTime:2019-07-26T23:30:26.8060303Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share902567c8?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9848-101a-010f-560a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9848-101a-010f-560a-449bd5000000\nTime:2019-07-26T23:30:26.8380609Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91246a6f?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9849-101a-010f-570a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9849-101a-010f-570a-449bd5000000\nTime:2019-07-26T23:30:26.8690898Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share91457383?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be984a-101a-010f-580a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be984a-101a-010f-580a-449bd5000000\nTime:2019-07-26T23:30:26.9021224Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share92956104?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be984b-101a-010f-590a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be984b-101a-010f-590a-449bd5000000\nTime:2019-07-26T23:30:26.9341525Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share939310ce?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be984c-101a-010f-5a0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be984c-101a-010f-5a0a-449bd5000000\nTime:2019-07-26T23:30:26.9651824Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be984d-101a-010f-5b0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be984d-101a-010f-5b0a-449bd5000000\nTime:2019-07-26T23:30:26.9962113Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share95273efa2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be984e-101a-010f-5c0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be984e-101a-010f-5c0a-449bd5000000\nTime:2019-07-26T23:30:27.0282433Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b0?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be984f-101a-010f-5d0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be984f-101a-010f-5d0a-449bd5000000\nTime:2019-07-26T23:30:27.0622748Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share9863815b2?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9850-101a-010f-5e0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9850-101a-010f-5e0a-449bd5000000\nTime:2019-07-26T23:30:27.0963068Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share990432c7?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9851-101a-010f-5f0a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9851-101a-010f-5f0a-449bd5000000\nTime:2019-07-26T23:30:27.1293386Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
+ "Content-Type" : "application/xml"
+ }
+ }, {
+ "Method" : "DELETE",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share99203b84?restype=share",
+ "Headers" : {
+ "x-ms-version" : "2018-11-09",
+ "User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
+ },
+ "Response" : {
+ "x-ms-version" : "2018-11-09",
+ "Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
+ "x-ms-error-code" : "ShareHasSnapshots",
+ "retry-after" : "0",
+ "Content-Length" : "250",
+ "StatusCode" : "409",
+ "x-ms-request-id" : "86be9852-101a-010f-600a-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be9852-101a-010f-600a-449bd5000000\nTime:2019-07-26T23:30:27.1723799Z",
+ "Date" : "Fri, 26 Jul 2019 23:30:26 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share41569da0" ]
+ "variables" : [ "share90076deb" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/snapshot.json b/storage/client/file/src/test/resources/session-records/snapshot.json
index 08e6b88615e55..6c146c0577f91 100644
--- a/storage/client/file/src/test/resources/session-records/snapshot.json
+++ b/storage/client/file/src/test/resources/session-records/snapshot.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share14716ca7?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,36 +9,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C793BF261\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:30 GMT",
+ "ETag" : "\"0x8D7122094614894\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d55-001a-006b-5275-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be8544-101a-010f-4d09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share14716ca7?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:40:30.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:25:43.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C793BF261\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:30 GMT",
+ "ETag" : "\"0x8D7122094614894\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:43 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d57-001a-006b-5375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT"
+ "x-ms-request-id" : "86be8546-101a-010f-4e09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share14716ca7?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share402510a4?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -50,11 +50,11 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781d58-001a-006b-5475-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781d58-001a-006b-5475-4192c4000000\nTime:2019-07-23T16:40:30.1135230Z",
- "Date" : "Tue, 23 Jul 2019 16:40:29 GMT",
+ "x-ms-request-id" : "86be8547-101a-010f-4f09-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be8547-101a-010f-4f09-449bd5000000\nTime:2019-07-26T23:25:43.4782378Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:43 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share14716ca7" ]
+ "variables" : [ "share402510a4" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/snapshotDifferentMetadata.json b/storage/client/file/src/test/resources/session-records/snapshotDifferentMetadata.json
index ff7dd6c695507..2e9da898e8d34 100644
--- a/storage/client/file/src/test/resources/session-records/snapshotDifferentMetadata.json
+++ b/storage/client/file/src/test/resources/session-records/snapshotDifferentMetadata.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share10771b10?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,36 +9,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C777A1A17\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "ETag" : "\"0x8D7122092F41992\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d17-001a-006b-2275-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT"
+ "x-ms-request-id" : "86be8507-101a-010f-1f09-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share10771b10?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:40:27.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:25:41.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C7771CF80\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "ETag" : "\"0x8D7122092F50880\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781d19-001a-006b-2375-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT"
+ "x-ms-request-id" : "86be8509-101a-010f-2009-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share10771b10?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -46,21 +46,21 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:40 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT",
"x-ms-has-legal-hold" : "false",
"x-ms-meta-create" : "metadata",
"x-ms-share-quota" : "2",
- "ETag" : "\"0x8D70F8C777A1A17\"",
+ "ETag" : "\"0x8D7122092F41992\"",
"x-ms-has-immutability-policy" : "false",
"Content-Length" : "0",
- "x-ms-request-id" : "a4781d1a-001a-006b-2475-4192c4000000"
+ "x-ms-request-id" : "86be850a-101a-010f-2109-449bd5000000"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share10771b10?sharesnapshot=2019-07-23T16%3a40%3a27.0000000Z&restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?sharesnapshot=2019-07-26T23%3a25%3a41.0000000Z&restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -69,20 +69,20 @@
"x-ms-meta-update" : "metadata",
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:40:27 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:25:41 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT",
"x-ms-has-legal-hold" : "false",
"x-ms-share-quota" : "2",
- "ETag" : "\"0x8D70F8C7771CF80\"",
+ "ETag" : "\"0x8D7122092F50880\"",
"x-ms-has-immutability-policy" : "false",
"Content-Length" : "0",
- "x-ms-request-id" : "3975b150-b01a-003d-1775-417ab4000000"
+ "x-ms-request-id" : "65e43af8-401a-011c-1a09-44ae34000000"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share10771b10?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share8640173b?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -94,11 +94,11 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781d1b-001a-006b-2575-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781d1b-001a-006b-2575-4192c4000000\nTime:2019-07-23T16:40:27.2825020Z",
- "Date" : "Tue, 23 Jul 2019 16:40:26 GMT",
+ "x-ms-request-id" : "86be850b-101a-010f-2209-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be850b-101a-010f-2209-449bd5000000\nTime:2019-07-26T23:25:41.1620423Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:40 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share10771b10" ]
+ "variables" : [ "share8640173b" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/snapshotDoesNotExist.json b/storage/client/file/src/test/resources/session-records/snapshotDoesNotExist.json
index 364519a28f53c..21019be2347d6 100644
--- a/storage/client/file/src/test/resources/session-records/snapshotDoesNotExist.json
+++ b/storage/client/file/src/test/resources/session-records/snapshotDoesNotExist.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share00244732?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share17872e7c?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -13,14 +13,14 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d45-001a-006b-4675-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781d45-001a-006b-4675-4192c4000000\nTime:2019-07-23T16:40:29.2589105Z",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "x-ms-request-id" : "86be8533-101a-010f-4109-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be8533-101a-010f-4109-449bd5000000\nTime:2019-07-26T23:25:42.7435420Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share00244732?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share17872e7c?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "a4781d47-001a-006b-4775-4192c4000000",
- "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:a4781d47-001a-006b-4775-4192c4000000\nTime:2019-07-23T16:40:29.3079458Z",
- "Date" : "Tue, 23 Jul 2019 16:40:28 GMT",
+ "x-ms-request-id" : "86be8535-101a-010f-4209-449bd5000000",
+ "Body" : "ShareNotFound
The specified share does not exist.\nRequestId:86be8535-101a-010f-4209-449bd5000000\nTime:2019-07-26T23:25:42.7785741Z",
+ "Date" : "Fri, 26 Jul 2019 23:25:42 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share00244732" ]
+ "variables" : [ "share17872e7c" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/snapshotSameMetadata.json b/storage/client/file/src/test/resources/session-records/snapshotSameMetadata.json
index 0e5c5452621c0..fc63871c91f5e 100644
--- a/storage/client/file/src/test/resources/session-records/snapshotSameMetadata.json
+++ b/storage/client/file/src/test/resources/session-records/snapshotSameMetadata.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share60407a93?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,36 +9,36 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C958F1003\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "ETag" : "\"0x8D71220B040CF5F\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dd2-001a-006b-0775-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85c9-101a-010f-1409-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/share60407a93?restype=share&comp=snapshot",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share&comp=snapshot",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-11-09",
- "x-ms-snapshot" : "2019-07-23T16:41:17.0000000Z",
+ "x-ms-snapshot" : "2019-07-26T23:26:30.0000000Z",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C953F3480\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "ETag" : "\"0x8D71220B029D700\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781dd4-001a-006b-0875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT"
+ "x-ms-request-id" : "86be85cb-101a-010f-1509-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/share60407a93?sharesnapshot=2019-07-23T16%3a41%3a17.0000000Z&restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?sharesnapshot=2019-07-26T23%3a26%3a30.0000000Z&restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -47,20 +47,20 @@
"x-ms-meta-test" : "metadata",
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:41:17 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:26:30 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:26:30 GMT",
"x-ms-has-legal-hold" : "false",
"x-ms-share-quota" : "2",
- "ETag" : "\"0x8D70F8C953F3480\"",
+ "ETag" : "\"0x8D71220B029D700\"",
"x-ms-has-immutability-policy" : "false",
"Content-Length" : "0",
- "x-ms-request-id" : "3975b191-b01a-003d-2775-417ab4000000"
+ "x-ms-request-id" : "65e43b8d-401a-011c-6509-44ae34000000"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.file.core.windows.net/share60407a93?restype=share",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/share20354259?restype=share",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -72,11 +72,11 @@
"retry-after" : "0",
"Content-Length" : "250",
"StatusCode" : "409",
- "x-ms-request-id" : "a4781dd5-001a-006b-0975-4192c4000000",
- "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:a4781dd5-001a-006b-0975-4192c4000000\nTime:2019-07-23T16:41:17.6894731Z",
- "Date" : "Tue, 23 Jul 2019 16:41:16 GMT",
+ "x-ms-request-id" : "86be85d6-101a-010f-1e09-449bd5000000",
+ "Body" : "ShareHasSnapshots
The share has snapshots and the operation requires no snapshots.\nRequestId:86be85d6-101a-010f-1e09-449bd5000000\nTime:2019-07-26T23:26:30.3367151Z",
+ "Date" : "Fri, 26 Jul 2019 23:26:29 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "share60407a93" ]
+ "variables" : [ "share20354259" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/startCopy.json b/storage/client/file/src/test/resources/session-records/startCopy.json
index f2a527cd8e4b9..bb7675576dae8 100644
--- a/storage/client/file/src/test/resources/session-records/startCopy.json
+++ b/storage/client/file/src/test/resources/session-records/startCopy.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile8920181a",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile970445fd",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3DB97C52\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "ETag" : "\"0x8D7122059AD0771\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:04 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c20-001a-006b-2775-4192c4000000",
+ "x-ms-request-id" : "86be83eb-101a-010f-0409-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:49 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:04 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile8920181a",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile970445fd",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -28,16 +28,16 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "x-ms-copy-id" : "2d272a59-d40b-4b67-8fc2-b66d8aa4a210",
- "ETag" : "\"0x8D70F8C3DDF5ACE\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "x-ms-copy-id" : "92466157-9c90-4d8c-9f0c-73d4dd0cc3aa",
+ "ETag" : "\"0x8D7122059CF64BD\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"x-ms-copy-status" : "success",
"StatusCode" : "202",
- "x-ms-request-id" : "a4781c21-001a-006b-2875-4192c4000000",
- "Date" : "Tue, 23 Jul 2019 16:38:49 GMT"
+ "x-ms-request-id" : "86be83ec-101a-010f-0509-449bd5000000",
+ "Date" : "Fri, 26 Jul 2019 23:24:04 GMT"
}
} ],
- "variables" : [ "file8920181a" ]
+ "variables" : [ "file970445fd" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/upload.json b/storage/client/file/src/test/resources/session-records/upload.json
index 457a29b5542cf..e0b82e24820de 100644
--- a/storage/client/file/src/test/resources/session-records/upload.json
+++ b/storage/client/file/src/test/resources/session-records/upload.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile98350d88",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile09897938",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3E2EC19B\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "ETag" : "\"0x8D712205A04D978\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c2b-001a-006b-3075-4192c4000000",
+ "x-ms-request-id" : "86be83f6-101a-010f-0e09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile98350d88?comp=range",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile09897938?comp=range",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -29,16 +29,16 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3E372789\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "ETag" : "\"0x8D712205A0D18D4\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c2c-001a-006b-3175-4192c4000000",
+ "x-ms-request-id" : "86be83f7-101a-010f-0f09-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"Content-MD5" : "wh+Wm18D0z1D4E+PE252gg=="
}
} ],
- "variables" : [ "file98350d88" ]
+ "variables" : [ "file09897938" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/uploadToStorageAndDownloadToFile.json b/storage/client/file/src/test/resources/session-records/uploadToStorageAndDownloadToFile.json
index dbc17e4548a1f..66551d478dc3f 100644
--- a/storage/client/file/src/test/resources/session-records/uploadToStorageAndDownloadToFile.json
+++ b/storage/client/file/src/test/resources/session-records/uploadToStorageAndDownloadToFile.json
@@ -1,7 +1,7 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile11163511",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile95955e6e",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -9,18 +9,18 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3E4050F6\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "ETag" : "\"0x8D712205A1509FD\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c2d-001a-006b-3275-4192c4000000",
+ "x-ms-request-id" : "86be83f8-101a-010f-1009-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT"
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile11163511?comp=range",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile95955e6e?comp=range",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
@@ -29,19 +29,19 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "ETag" : "\"0x8D70F8C3E4ED28D\"",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "ETag" : "\"0x8D712205A1C85DC\"",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "a4781c2e-001a-006b-3375-4192c4000000",
+ "x-ms-request-id" : "86be83f9-101a-010f-1109-449bd5000000",
"x-ms-request-server-encrypted" : "true",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"Content-MD5" : "/CTzx8jXJ1MqqUsC1dJBUQ=="
}
}, {
"Method" : "HEAD",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile11163511",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile95955e6e",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -49,21 +49,21 @@
"Response" : {
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"StatusCode" : "200",
- "Date" : "Tue, 23 Jul 2019 16:38:50 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"x-ms-server-encrypted" : "true",
"x-ms-type" : "File",
- "ETag" : "\"0x8D70F8C3E4ED28D\"",
+ "ETag" : "\"0x8D712205A1C85DC\"",
"Content-Length" : "14",
- "x-ms-request-id" : "a4781c2f-001a-006b-3475-4192c4000000",
+ "x-ms-request-id" : "86be83fa-101a-010f-1209-449bd5000000",
"Body" : "",
"Content-Type" : "application/octet-stream"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.file.core.windows.net/filesharename/testdir%2ffile11163511",
+ "Uri" : "https://azstoragesdkaccount.file.core.windows.net/filesharename/testdir%2ffile95955e6e",
"Headers" : {
"x-ms-version" : "2018-11-09",
"User-Agent" : "azsdk-java-azure-storage-file/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
@@ -72,19 +72,19 @@
"x-ms-version" : "2018-11-09",
"Server" : "Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0",
"Content-Range" : "bytes 0-13/14",
- "Last-Modified" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "Last-Modified" : "Fri, 26 Jul 2019 23:24:05 GMT",
"retry-after" : "0",
"StatusCode" : "206",
- "Date" : "Tue, 23 Jul 2019 16:38:51 GMT",
+ "Date" : "Fri, 26 Jul 2019 23:24:05 GMT",
"Accept-Ranges" : "bytes",
"x-ms-server-encrypted" : "true",
"x-ms-type" : "File",
- "ETag" : "\"0x8D70F8C3E4ED28D\"",
+ "ETag" : "\"0x8D712205A1C85DC\"",
"Content-Length" : "14",
- "x-ms-request-id" : "a4781c30-001a-006b-3575-4192c4000000",
+ "x-ms-request-id" : "86be83fb-101a-010f-1309-449bd5000000",
"Body" : "Hello world!\r\n",
"Content-Type" : "application/octet-stream"
}
} ],
- "variables" : [ "file11163511" ]
+ "variables" : [ "file95955e6e" ]
}
\ No newline at end of file
diff --git a/storage/client/file/src/test/resources/session-records/urlFromDirClient.json b/storage/client/file/src/test/resources/session-records/urlFromDirClient.json
index 11fc90ded8aec..74abd9d8bf450 100644
--- a/storage/client/file/src/test/resources/session-records/urlFromDirClient.json
+++ b/storage/client/file/src/test/resources/session-records/urlFromDirClient.json
@@ -1,4 +1,4 @@
{
"networkCallRecords" : [ ],
- "variables" : [ "directory100251" ]
+ "variables" : [ "directory92768e" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/README.md b/storage/client/queue/README.md
index 18f92018e21c5..c6d5597a73a06 100644
--- a/storage/client/queue/README.md
+++ b/storage/client/queue/README.md
@@ -108,22 +108,22 @@ The queue service do operations on the queues in the storage account and manage
### Queue Service Client
-The client performs the interactions with the Queue service, create or delete a queue, getting and setting Queue properties, list queues in account, and get queue statistics. An asynchronous, `QueueServiceAsyncClient`, and synchronous, `QueueClient`, client exists in the SDK allowing for selection of a client based on an application's use case.
+The client performs the interactions with the Queue service, create or delete a queue, getting and setting Queue properties, list queues in account, and get queue statistics. An asynchronous, `QueueStorageAsyncClient`, and synchronous, `QueueStorageClient`, client exists in the SDK allowing for selection of a client based on an application's use case.
Once you have the value of the SASToken you can create the queue service client with `${accountName}`, `${SASToken}`.
```Java
-String queueServiceURL = String.format("https://%s.queue.core.windows.net", accountName)
-QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueURL).credential(SASToken).build();
+String queueStorageURL = String.format("https://%s.queue.core.windows.net", accountName)
+QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueURL).credential(SASToken).buildClient();
-QueueClient newQueueServiceClient = queueServiceClient.createQueue("myqueue");
+QueueClient newQueueClient = queueStorageClient.createQueue("myqueue");
```
or
```Java
-String queueServiceAsyncURL = String.format("https://%s.queue.core.windows.net/", accountName)
-QueueServiceAsyncClient queueServiceAsyncClient = new QueueServiceClientBuilder().endpoint(queueServiceAsyncURL)
- credential(SASToken).build();
-queueServiceAsyncClient.createQueue("newAsyncQueue").subscribe(
+String queueStorageAsyncURL = String.format("https://%s.queue.core.windows.net/", accountName)
+QueueStorageAsyncClient queueStorageAsyncClient = new QueueStorageClientBuilder().endpoint(queueStorageAsyncURL)
+ credential(SASToken).buildAsyncClient();
+queueStorageAsyncClient.createQueue("newQueue").subscribe(
result -> {
// do something when new queue created
},
@@ -184,22 +184,22 @@ The following sections provide several code snippets covering some of the most c
- [Set/Update a Queue metadata](#Set-a-queue-metadata)
### Build a client
-We have two ways of building QueueService or Queue Client. Here will take queueServiceClient as an example. Same things apply to queueClient.
+We have two ways of building QueueStorage or Queue Client. Here will take QueueStorageClient as an example. Same things apply to QueueClient.
-First, build client from full URL/endpoint (e.g. with queueName, with SASToken and etc.)
+First, build client from full URL/endpoint (e.g. with queueName, with SASToken and etc.) The endpoint method is able to parse SAS Token and use them
+as authentication.
```Java
-String queueServiceURL = String.format("https://%s.queue.core.windows.net/%s", accountName, sasToken);
-QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).buildClient();
+String queueStorageURL = String.format("https://%s.queue.core.windows.net/%s", accountName, sasToken);
+QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).buildClient();
```
Or
-We can build the queueServiceClient from the builder using `${SASToken}` as credential.
+We can build the QueueStorageClient from the builder using `${SASToken}` as credential.
-```Java
-String queueServiceURL = String.format("https://%s.queue.core.windows.net", accountName);
-QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).credential(SASToken).buildClient();
+String queueStorageURL = String.format("https://%s.queue.core.windows.net", accountName);
+QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).credential(SASToken).buildClient();
```
### Create a queue
@@ -208,31 +208,31 @@ Create a queue in the Storage Account using `${SASToken}` as credential.
Throws StorageErrorException If the queue fails to be created.
```Java
-String queueServiceURL = String.format("https://%s.queue.core.windows.net", accountName);
-QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).credential(SASToken).buildClient();
+String queueStorageURL = String.format("https://%s.queue.core.windows.net", accountName);
+QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).credential(SASToken).buildClient();
-QueueClient newQueueServiceClient = queueServiceClient.createQueue("myqueue");
+QueueClient newQueueClient = queueStorageClient.createQueue("myqueue");
```
### Delete a queue
Delete a queue in the Storage Account using `${SASToken}` as credential.
Throws StorageErrorException If the queue fails to be deleted.
```Java
-String queueServiceURL = String.format("https://%s.queue.core.windows.net", accountName);
-QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).credential(SASToken).buildClient();
+String queueStorageURL = String.format("https://%s.queue.core.windows.net", accountName);
+QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).credential(SASToken).buildClient();
-QueueClient newQueueServiceClient = queueServiceClient.deleteQueue("myqueue");
+QueueClient newQueueClient = queueStorageClient.deleteQueue("myqueue");
```
### List queues in account
List all the queues in account using `${SASToken}` as credential.
```Java
-String queueServiceURL = String.format("https://%s.queue.core.windows.net", accountName);
-QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).credential(SASToken).buildClient();
+String queueStorageURL = String.format("https://%s.queue.core.windows.net", accountName);
+QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).credential(SASToken).buildClient();
// @param marker: Starting point to list the queues
// @param options: Filter for queue selection
-queueServiceClient.listQueuesSegment(marker, options).forEach{
+queueStorageClient.listQueuesSegment(marker, options).forEach{
queueItem -> {//do something}
};
```
@@ -243,10 +243,10 @@ Get queue properties in account, including properties for Storage Analytics and
Use `${SASToken}` as credential.
```Java
-String queueServiceURL = String.format("https://%s.queue.core.windows.net", accountName);
-QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).credential(SASToken).buildClient();
+String queueStorageURL = String.format("https://%s.queue.core.windows.net", accountName);
+QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).credential(SASToken).buildClient();
-Response properties = queueServiceClient.getProperties();
+Response properties = queueStorageClient.getProperties();
```
### Set properties in queue account
@@ -255,8 +255,8 @@ Set queue properties in account, including properties for Storage Analytics and
Use `${SASToken}` as credential.
```Java
-String queueServiceURL = String.format("https://%s.queue.core.windows.net", accountName);
-QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).credential(SASToken).buildClient();
+String queueStorageURL = String.format("https://%s.queue.core.windows.net", accountName);
+QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).credential(SASToken).buildClient();
StorageServiceProperties properties = new StorageServiceProperties() {
// logging: some logging;
@@ -265,7 +265,7 @@ StorageServiceProperties properties = new StorageServiceProperties() {
// Cors: some cors
}
-queueServiceClient.setProperties(properties);
+queueStorageClient.setProperties(properties);
```
### Get queue service statistics
@@ -274,10 +274,10 @@ The `Get Queue Service Stats` operation retrieves statistics related to replicat
Use `${SASToken}` as credential.
It is only available on the secondary location endpoint when read-access geo-redundant replication is enabled for the storage account.
```Java
-String queueServiceURL = String.format("https://%s.queue.core.windows.net", accountName);
-QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).credential(SASToken).buildClient();
+String queueStorageURL = String.format("https://%s.queue.core.windows.net", accountName);
+QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).credential(SASToken).buildClient();
-Response queueStats = queueServiceClient.getStatistics();
+Response queueStats = queueStorageClient.getStatistics();
```
### Enqueue message into a queue
@@ -286,7 +286,7 @@ The operation adds a new message to the back of the message queue. A visibility
Use `${SASToken}` as credential.
A message must be in a format that can be included in an XML request with UTF-8 encoding. The encoded message can be up to 64 KB in size for versions 2011-08-18 and newer, or 8 KB in size for previous versions.
```Java
-String queueSURL = String.format("https://%s.queue.core.windows.net", accountName);
+String queueURL = String.format("https://%s.queue.core.windows.net", accountName);
QueueClient queueClient = new QueueClientBuilder().endpoint(queueURL).credential(SASToken).queueName("myqueue").buildClient();
queueClient.enqueueMessage("myMessage");
@@ -295,7 +295,7 @@ queueClient.enqueueMessage("myMessage");
### Update messaged from a queue
The operation updates a message in the message queue. Use `${SASToken}` as credential.
```Java
-String queueSURL = String.format("https://%s.queue.core.windows.net", accountName);
+String queueURL = String.format("https://%s.queue.core.windows.net", accountName);
QueueClient queueClient = new QueueClientBuilder().endpoint(queueURL).credential(SASToken).queueName("myqueue").buildClient();
// @param messageId Id of the message
// @param popReceipt Unique identifier that must match the message for it to be updated
@@ -306,7 +306,7 @@ queueClient.updateMessage(messageId, "new message", popReceipt, visibilityTimeou
### Peek messages from a queue
The operation retrieves one or more messages from the front of the queue. Use `${SASToken}` as credential.
```Java
-String queueSURL = String.format("https://%s.queue.core.windows.net", accountName);
+String queueURL = String.format("https://%s.queue.core.windows.net", accountName);
QueueClient queueClient = new QueueClientBuilder().endpoint(queueURL).credential(SASToken).queueName("myqueue").buildClient();
queueClient.peekMessages().forEach(message-> {print message.messageText();});
@@ -316,7 +316,7 @@ queueClient.peekMessages().forEach(message-> {print message.messageText();});
### Dequeue messages from a queue
The operation retrieves one or more messages from the front of the queue. Use `${SASToken}` as credential.
```Java
-String queueSURL = String.format("https://%s.queue.core.windows.net", accountName);
+String queueURL = String.format("https://%s.queue.core.windows.net", accountName);
QueueClient queueClient = new QueueClientBuilder().endpoint(queueURL).credential(SASToken).queueName("myqueue").buildClient();
queueClient.dequeueMessage("myMessage").forEach(message-> {print message.messageText();});
@@ -337,7 +337,7 @@ The operation retrieves user-defined metadata and queue properties on the specif
Use `${SASToken}` as credential.
```Java
-String queueSURL = String.format("https://%s.queue.core.windows.net", accountName);
+String queueURL = String.format("https://%s.queue.core.windows.net", accountName);
QueueClient queueClient = new QueueClientBuilder().endpoint(queueURL).credential(SASToken).queueName("myqueue").buildClient();
Response properties = queueClient.getProperties();
@@ -348,7 +348,7 @@ The operation sets user-defined metadata on the specified queue. Metadata is ass
Use `${SASToken}` as credential.
```Java
-String queueSURL = String.format("https://%s.queue.core.windows.net", accountName);
+String queueURL = String.format("https://%s.queue.core.windows.net", accountName);
QueueClient queueClient = new QueueClientBuilder().endpoint(queueURL).credential(SASToken).queueName("myqueue").buildClient();
Map metadata = new HashMap<>() {{
@@ -369,7 +369,7 @@ When you interact with queue using this Java client library, errors returned by
### More Samples
Get started with our [Queue samples][samples]:
-- [QueueServiceSample](src/samples/java/queue/QueueServiceSample.java): Create, list and delete queues
+- [QueueStorageSample](src/samples/java/queue/QueueStorageSample.java): Create, list and delete queues
- [MessageSample](src/samples/java/queue/MessageSample.java): Enqueue, peek dequeue, update, clear and delete messages. Get properties of the queue.
- [QueueExceptionSample](src/samples/java/queue/QueueExceptionSample.java): Handle the exceptions from storage queue service side.
- [AsyncSample](src/samples/java/queue/AsyncSample.java): Create queue and enqueue message using async queue client call.
diff --git a/storage/client/queue/src/main/java/com/azure/storage/queue/QueueClientBuilder.java b/storage/client/queue/src/main/java/com/azure/storage/queue/QueueClientBuilder.java
index d272cfc1bbf89..94032014101cc 100644
--- a/storage/client/queue/src/main/java/com/azure/storage/queue/QueueClientBuilder.java
+++ b/storage/client/queue/src/main/java/com/azure/storage/queue/QueueClientBuilder.java
@@ -237,7 +237,7 @@ public QueueClientBuilder credential(SASTokenCredential credential) {
* Sets the {@link SharedKeyCredential} used to authenticate requests sent to the Queue.
*
* @param credential Shared key credential can retrieve from the Storage account that authorizes requests
- * @return the updated QueueServiceClientBuilder object
+ * @return the updated QueueStorageClientBuilder object
* @throws NullPointerException If {@code credential} is {@code null}.
*/
public QueueClientBuilder credential(SharedKeyCredential credential) {
diff --git a/storage/client/queue/src/main/java/com/azure/storage/queue/QueueServiceAsyncClient.java b/storage/client/queue/src/main/java/com/azure/storage/queue/QueueStorageAsyncClient.java
similarity index 92%
rename from storage/client/queue/src/main/java/com/azure/storage/queue/QueueServiceAsyncClient.java
rename to storage/client/queue/src/main/java/com/azure/storage/queue/QueueStorageAsyncClient.java
index e093f1d34b171..83e201c0fd114 100644
--- a/storage/client/queue/src/main/java/com/azure/storage/queue/QueueServiceAsyncClient.java
+++ b/storage/client/queue/src/main/java/com/azure/storage/queue/QueueStorageAsyncClient.java
@@ -36,27 +36,27 @@
*
* Instantiating an Asynchronous Queue Service Client
*
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.instantiation}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.instantiation}
*
- * View {@link QueueServiceClientBuilder this} for additional ways to construct the client.
+ * View {@link QueueStorageClientBuilder this} for additional ways to construct the client.
*
- * @see QueueServiceClientBuilder
- * @see QueueServiceClient
+ * @see QueueStorageClientBuilder
+ * @see QueueStorageClient
* @see SharedKeyCredential
* @see SASTokenCredential
*/
-public final class QueueServiceAsyncClient {
- private static final ClientLogger LOGGER = new ClientLogger(QueueServiceAsyncClient.class);
+public final class QueueStorageAsyncClient {
+ private static final ClientLogger LOGGER = new ClientLogger(QueueStorageAsyncClient.class);
private final AzureQueueStorageImpl client;
/**
- * Creates a QueueServiceAsyncClient that sends requests to the storage account at {@code endpoint}.
+ * Creates a QueueStorageAsyncClient that sends requests to the storage account at {@code endpoint}.
* Each service call goes through the {@code httpPipeline}.
*
* @param endpoint URL for the Storage Queue service
* @param httpPipeline HttpPipeline that the HTTP requests and response flow through
*/
- QueueServiceAsyncClient(URL endpoint, HttpPipeline httpPipeline) {
+ QueueStorageAsyncClient(URL endpoint, HttpPipeline httpPipeline) {
this.client = new AzureQueueStorageBuilder().pipeline(httpPipeline)
.url(endpoint.toString())
.build();
@@ -66,7 +66,7 @@ public final class QueueServiceAsyncClient {
* @return the URL of the storage queue
* @throws RuntimeException If the queue service is using a malformed URL.
*/
- public URL getQueueServiceUrl() {
+ public URL getQueueStorageUrl() {
try {
return new URL(client.url());
} catch (MalformedURLException ex) {
@@ -95,7 +95,7 @@ public QueueAsyncClient getQueueAsyncClient(String queueName) {
*
* Create the queue "test"
*
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.createQueue#string}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.createQueue#string}
*
* @param queueName Name of the queue
* @return A response containing the QueueAsyncClient and the status of creating the queue
@@ -113,7 +113,7 @@ public Mono> createQueue(String queueName) {
*
* Create the queue "test" with metadata "queue:metadata"
*
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.createQueue#string-map}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.createQueue#string-map}
*
* @param queueName Name of the queue
* @param metadata Metadata to associate with the queue
@@ -134,7 +134,7 @@ public Mono> createQueue(String queueName, MapDelete the queue "test"
*
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.deleteQueue#string}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.deleteQueue#string}
*
* @param queueName Name of the queue
* @return A response that only contains headers and response status code
@@ -151,7 +151,7 @@ public Mono deleteQueue(String queueName) {
*
* List all queues in the account
*
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.listQueues}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.listQueues}
*
* @return {@link QueueItem Queues} in the storage account
*/
@@ -169,7 +169,7 @@ public Flux listQueues() {
*
* List all queues that begin with "azure"
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.listQueues#queueSergmentOptions}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.listQueues#queueSergmentOptions}
*
* @param options Options for listing queues
* @return {@link QueueItem Queues} in the storage account that satisfy the filter requirements
@@ -238,7 +238,7 @@ private Flux extractAndFetchQueues(ServicesListQueuesSegmentResponse
*
* Retrieve Queue service properties
*
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.getProperties}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.getProperties}
*
* @return Storage account Queue service properties
*/
@@ -258,11 +258,11 @@ public Mono> getProperties() {
*
* Clear CORS in the Queue service
*
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.setProperties#storageServiceProperties}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.setProperties#storageServiceProperties}
*
* Enable Minute and Hour Metrics
*
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.setPropertiesEnableMetrics#storageServiceProperties}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.setPropertiesEnableMetrics#storageServiceProperties}
*
* @param properties Storage account Queue service properties
* @return A response that only contains headers and response status code
@@ -290,7 +290,7 @@ public Mono setProperties(StorageServiceProperties properties) {
*
* Retrieve the geo replication information
*
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.getStatistics}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.getStatistics}
*
* @return The geo replication information about the Queue service
*/
diff --git a/storage/client/queue/src/main/java/com/azure/storage/queue/QueueServiceClient.java b/storage/client/queue/src/main/java/com/azure/storage/queue/QueueStorageClient.java
similarity index 87%
rename from storage/client/queue/src/main/java/com/azure/storage/queue/QueueServiceClient.java
rename to storage/client/queue/src/main/java/com/azure/storage/queue/QueueStorageClient.java
index a002e5b12f872..944ab28f53972 100644
--- a/storage/client/queue/src/main/java/com/azure/storage/queue/QueueServiceClient.java
+++ b/storage/client/queue/src/main/java/com/azure/storage/queue/QueueStorageClient.java
@@ -23,32 +23,32 @@
*
* Instantiating an Synchronous Queue Service Client
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.instantiation}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.instantiation}
*
- * View {@link QueueServiceClientBuilder this} for additional ways to construct the client.
+ * View {@link QueueStorageClientBuilder this} for additional ways to construct the client.
*
- * @see QueueServiceClientBuilder
- * @see QueueServiceAsyncClient
+ * @see QueueStorageClientBuilder
+ * @see QueueStorageAsyncClient
* @see SharedKeyCredential
* @see SASTokenCredential
*/
-public final class QueueServiceClient {
- private final QueueServiceAsyncClient client;
+public final class QueueStorageClient {
+ private final QueueStorageAsyncClient client;
/**
- * Creates a QueueServiceClient that wraps a QueueServiceAsyncClient and blocks requests.
+ * Creates a QueueStorageClient that wraps a QueueStorageAsyncClient and blocks requests.
*
- * @param client QueueServiceAsyncClient that is used to send requests
+ * @param client QueueStorageAsyncClient that is used to send requests
*/
- QueueServiceClient(QueueServiceAsyncClient client) {
+ QueueStorageClient(QueueStorageAsyncClient client) {
this.client = client;
}
/**
* @return the URL of the storage queue
*/
- public URL getQueueServiceUrl() {
- return client.getQueueServiceUrl();
+ public URL getQueueStorageUrl() {
+ return client.getQueueStorageUrl();
}
/**
@@ -70,7 +70,7 @@ public QueueClient getQueueClient(String queueName) {
*
* Create the queue "test"
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.createQueue#string}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.createQueue#string}
*
* @param queueName Name of the queue
* @return A response containing the QueueClient and the status of creating the queue
@@ -88,7 +88,7 @@ public Response createQueue(String queueName) {
*
* Create the queue "test" with metadata "queue:metadata"
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.createQueue#string-map}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.createQueue#string-map}
*
* @param queueName Name of the queue
* @param metadata Metadata to associate with the queue
@@ -108,7 +108,7 @@ public Response createQueue(String queueName, Map m
*
* Delete the queue "test"
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.deleteQueue#string}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.deleteQueue#string}
*
* @param queueName Name of the queue
* @return A response containing the status of deleting the queue
@@ -125,7 +125,7 @@ public VoidResponse deleteQueue(String queueName) {
*
* List all queues in the account
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.listQueues}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.listQueues}
*
* @return {@link QueueItem Queues} in the storage account
*/
@@ -143,7 +143,7 @@ public Iterable listQueues() {
*
* List all queues that begin with "azure"
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.listQueues#queueSergmentOptions}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.listQueues#queueSergmentOptions}
*
* @param options Options for listing queues
* @return {@link QueueItem Queues} in the storage account that satisfy the filter requirements
@@ -174,7 +174,7 @@ Iterable listQueues(String marker, QueuesSegmentOptions options) {
*
* Retrieve Queue service properties
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.getProperties}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.getProperties}
*
* @return Storage account Queue service properties
*/
@@ -193,11 +193,11 @@ public Response getProperties() {
*
* Clear CORS in the Queue service
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.setProperties#storageServiceProperties}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.setProperties#storageServiceProperties}
*
* Enable Minute and Hour Metrics
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.setPropertiesEnableMetrics#storageServiceProperties}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.setPropertiesEnableMetrics#storageServiceProperties}
*
* @param properties Storage account Queue service properties
* @return A response that only contains headers and response status code
@@ -224,7 +224,7 @@ public VoidResponse setProperties(StorageServiceProperties properties) {
*
* Retrieve the geo replication information
*
- * {@codesnippet com.azure.storage.queue.queueServiceClient.getStatistics}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.getStatistics}
*
* @return The geo replication information about the Queue service
*/
diff --git a/storage/client/queue/src/main/java/com/azure/storage/queue/QueueServiceClientBuilder.java b/storage/client/queue/src/main/java/com/azure/storage/queue/QueueStorageClientBuilder.java
similarity index 70%
rename from storage/client/queue/src/main/java/com/azure/storage/queue/QueueServiceClientBuilder.java
rename to storage/client/queue/src/main/java/com/azure/storage/queue/QueueStorageClientBuilder.java
index 63b191256f5dd..a33198e823a91 100644
--- a/storage/client/queue/src/main/java/com/azure/storage/queue/QueueServiceClientBuilder.java
+++ b/storage/client/queue/src/main/java/com/azure/storage/queue/QueueStorageClientBuilder.java
@@ -22,55 +22,59 @@
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
+import java.util.HashMap;
import java.util.List;
+import java.util.Locale;
+import java.util.Map;
import java.util.Objects;
/**
- * This class provides a fluent builder API to help aid the configuration and instantiation of the {@link QueueServiceClient queueServiceClients}
- * and {@link QueueServiceAsyncClient queueServiceAsyncClients}, calling {@link QueueServiceClientBuilder#buildClient() buildClient}
- * constructs an instance of QueueServiceClient and calling {@link QueueServiceClientBuilder#buildAsyncClient() buildAsyncClient}
- * constructs an instance of QueueServiceAsyncClient.
+ * This class provides a fluent builder API to help aid the configuration and instantiation of the {@link QueueStorageClient queueStoragesClients}
+ * and {@link QueueStorageAsyncClient queueStorageAsyncClients}, calling {@link QueueStorageClientBuilder#buildClient() buildClient}
+ * constructs an instance of QueueStorageClient and calling {@link QueueStorageClientBuilder#buildAsyncClient() buildAsyncClient}
+ * constructs an instance of QueueStorageAsyncClient.
*
* The client needs the endpoint of the Azure Storage Queue service, name of the share, and authorization credential.
- * {@link QueueServiceClientBuilder#endpoint(String) endpoint} gives the builder the endpoint and may give the builder the
+ * {@link QueueStorageClientBuilder#endpoint(String) endpoint} gives the builder the endpoint and may give the builder the
* A {@link SASTokenCredential} that authorizes the client.
*
* Instantiating a synchronous Queue Service Client with SAS token
- * {@codesnippet com.azure.storage.queue.queueServiceClient.instantiation.sastoken}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.instantiation.sastoken}
*
* Instantiating an Asynchronous Queue Service Client with SAS token
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.instantiation.sastoken}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.instantiation.sastoken}
*
* If the {@code endpoint} doesn't contain {@code SASTokenCredential} they may be set using
* {@link QueueClientBuilder#credential(SASTokenCredential) credential}.
*
* Instantiating a synchronous Queue Service Client with SAS token
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.instantiation.credential}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.instantiation.credential}
*
* Instantiating an Asynchronous Queue Service Client with SAS token
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.instantiation.credential}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.instantiation.credential}
*
* If the {@code endpoint} doesn't contain the query parameters to construct a {@code SASTokenCredential} they may
- * be set using {@link QueueServiceClientBuilder#credential(SASTokenCredential) credential}.
+ * be set using {@link QueueStorageClientBuilder#credential(SASTokenCredential) credential}.
*
* Another way to authenticate the client is using a {@link SharedKeyCredential}. To create a SharedKeyCredential
* a connection string from the Storage Queue service must be used. Set the SharedKeyCredential with
- * {@link QueueServiceClientBuilder#connectionString(String) connectionString}. If the builder has both a SASTokenCredential and
+ * {@link QueueStorageClientBuilder#connectionString(String) connectionString}. If the builder has both a SASTokenCredential and
* SharedKeyCredential the SharedKeyCredential will be preferred when authorizing requests sent to the service.
*
* Instantiating a synchronous Queue Service Client with connection string.
- * {@codesnippet com.azure.storage.queue.queueServiceClient.instantiation.connectionstring}
+ * {@codesnippet com.azure.storage.queue.queueStorageClient.instantiation.connectionstring}
*
* Instantiating an Asynchronous Queue Service Client with connection string.
- * {@codesnippet com.azure.storage.queue.queueServiceAsyncClient.instantiation.connectionstring}
+ * {@codesnippet com.azure.storage.queue.queueStorageAsyncClient.instantiation.connectionstring}
*
- * @see QueueServiceClient
- * @see QueueServiceAsyncClient
+ * @see QueueStorageClient
+ * @see QueueStorageAsyncClient
* @see SASTokenCredential
* @see SharedKeyCredential
*/
-public final class QueueServiceClientBuilder {
- private static final ClientLogger LOGGER = new ClientLogger(QueueServiceClientBuilder.class);
+public final class QueueStorageClientBuilder {
+ private static final ClientLogger LOGGER = new ClientLogger(QueueStorageClientBuilder.class);
+ private static final String ACCOUNT_NAME = "accountname";
private final List policies;
private URL endpoint;
@@ -83,10 +87,10 @@ public final class QueueServiceClientBuilder {
private Configuration configuration;
/**
- * Creates a builder instance that is able to configure and construct {@link QueueServiceClient QueueServiceClients}
- * and {@link QueueServiceAsyncClient QueueServiceAsyncClients}.
+ * Creates a builder instance that is able to configure and construct {@link QueueStorageClient QueueStorageClients}
+ * and {@link QueueStorageAsyncClient QueueStorageAsyncClients}.
*/
- public QueueServiceClientBuilder() {
+ public QueueStorageClientBuilder() {
retryPolicy = new RetryPolicy();
logLevel = HttpLogDetailLevel.NONE;
policies = new ArrayList<>();
@@ -94,20 +98,20 @@ public QueueServiceClientBuilder() {
}
/**
- * Creates a {@link QueueServiceAsyncClient} based on options set in the builder. Every time {@code buildAsyncClient()} is
- * called a new instance of {@link QueueServiceAsyncClient} is created.
+ * Creates a {@link QueueStorageAsyncClient} based on options set in the builder. Every time {@code buildAsyncClient()} is
+ * called a new instance of {@link QueueStorageAsyncClient} is created.
*
*
- * If {@link QueueServiceClientBuilder#pipeline(HttpPipeline) pipeline} is set, then the {@code pipeline} and
- * {@link QueueServiceClientBuilder#endpoint(String) endpoint} are used to create the
- * {@link QueueServiceAsyncClient client}. All other builder settings are ignored.
+ * If {@link QueueStorageClientBuilder#pipeline(HttpPipeline) pipeline} is set, then the {@code pipeline} and
+ * {@link QueueStorageClientBuilder#endpoint(String) endpoint} are used to create the
+ * {@link QueueStorageAsyncClient client}. All other builder settings are ignored.
*
*
- * @return A QueueServiceAsyncClient with the options set from the builder.
+ * @return A QueueStorageAsyncClient with the options set from the builder.
* @throws NullPointerException If {@code endpoint} or {@code queueName} have not been set.
* @throws IllegalArgumentException If neither a {@link SharedKeyCredential} or {@link SASTokenCredential} has been set.
*/
- public QueueServiceAsyncClient buildAsyncClient() {
+ public QueueStorageAsyncClient buildAsyncClient() {
Objects.requireNonNull(endpoint);
if (sasTokenCredential == null && sharedKeyCredential == null) {
@@ -116,7 +120,7 @@ public QueueServiceAsyncClient buildAsyncClient() {
}
if (pipeline != null) {
- return new QueueServiceAsyncClient(endpoint, pipeline);
+ return new QueueStorageAsyncClient(endpoint, pipeline);
}
// Closest to API goes first, closest to wire goes last.
final List policies = new ArrayList<>();
@@ -144,25 +148,25 @@ public QueueServiceAsyncClient buildAsyncClient() {
.httpClient(httpClient)
.build();
- return new QueueServiceAsyncClient(endpoint, pipeline);
+ return new QueueStorageAsyncClient(endpoint, pipeline);
}
/**
- * Creates a {@link QueueServiceClient} based on options set in the builder. Every time {@code buildClient()} is
- * called a new instance of {@link QueueServiceClient} is created.
+ * Creates a {@link QueueStorageClient} based on options set in the builder. Every time {@code buildClient()} is
+ * called a new instance of {@link QueueStorageClient} is created.
*
*
- * If {@link QueueServiceClientBuilder#pipeline(HttpPipeline) pipeline} is set, then the {@code pipeline} and
- * {@link QueueServiceClientBuilder#endpoint(String) endpoint} are used to create the
- * {@link QueueServiceClient client}. All other builder settings are ignored.
+ * If {@link QueueStorageClientBuilder#pipeline(HttpPipeline) pipeline} is set, then the {@code pipeline} and
+ * {@link QueueStorageClientBuilder#endpoint(String) endpoint} are used to create the
+ * {@link QueueStorageClient client}. All other builder settings are ignored.
*
*
- * @return A QueueServiceClient with the options set from the builder.
+ * @return A QueueStorageClient with the options set from the builder.
* @throws NullPointerException If {@code endpoint} or {@code queueName} have not been set.
* @throws IllegalStateException If neither a {@link SharedKeyCredential} or {@link SASTokenCredential} has been set.
*/
- public QueueServiceClient buildClient() {
- return new QueueServiceClient(buildAsyncClient());
+ public QueueStorageClient buildClient() {
+ return new QueueStorageClient(buildAsyncClient());
}
@@ -173,10 +177,10 @@ public QueueServiceClient buildClient() {
* attempt to generate a {@link SASTokenCredential} to authenticate requests sent to the service.
*
* @param endpoint The URL of the Azure Storage Queue instance to send service requests to and receive responses from.
- * @return the updated QueueServiceClientBuilder object
+ * @return the updated QueueStorageClientBuilder object
* @throws IllegalArgumentException If {@code endpoint} isn't a proper URL
*/
- public QueueServiceClientBuilder endpoint(String endpoint) {
+ public QueueStorageClientBuilder endpoint(String endpoint) {
Objects.requireNonNull(endpoint);
try {
URL fullURL = new URL(endpoint);
@@ -199,10 +203,10 @@ public QueueServiceClientBuilder endpoint(String endpoint) {
* Sets the {@link SASTokenCredential} used to authenticate requests sent to the Queue service.
*
* @param credential SAS token credential generated from the Storage account that authorizes requests
- * @return the updated QueueServiceClientBuilder object
+ * @return the updated QueueStorageClientBuilder object
* @throws NullPointerException If {@code credential} is {@code null}.
*/
- public QueueServiceClientBuilder credential(SASTokenCredential credential) {
+ public QueueStorageClientBuilder credential(SASTokenCredential credential) {
this.sasTokenCredential = Objects.requireNonNull(credential);
return this;
}
@@ -211,10 +215,10 @@ public QueueServiceClientBuilder credential(SASTokenCredential credential) {
* Sets the {@link SharedKeyCredential} used to authenticate requests sent to the Queue service.
*
* @param credential Shared key credential can retrieve from the Storage account that authorizes requests
- * @return the updated QueueServiceClientBuilder object
+ * @return the updated QueueStorageClientBuilder object
* @throws NullPointerException If {@code credential} is {@code null}.
*/
- public QueueServiceClientBuilder credential(SharedKeyCredential credential) {
+ public QueueStorageClientBuilder credential(SharedKeyCredential credential) {
this.sharedKeyCredential = Objects.requireNonNull(credential);
return this;
}
@@ -225,23 +229,38 @@ public QueueServiceClientBuilder credential(SharedKeyCredential credential) {
* Queue service.
*
* @param connectionString Connection string from the Access Keys section in the Storage account
- * @return the updated QueueServiceClientBuilder object
+ * @return the updated QueueStorageClientBuilder object
* @throws NullPointerException If {@code connectionString} is {@code null}.
*/
- public QueueServiceClientBuilder connectionString(String connectionString) {
+ public QueueStorageClientBuilder connectionString(String connectionString) {
Objects.requireNonNull(connectionString);
this.sharedKeyCredential = SharedKeyCredential.fromConnectionString(connectionString);
+ getEndPointFromConnectionString(connectionString);
return this;
}
+ private void getEndPointFromConnectionString(String connectionString) {
+ Map connectionStringPieces = new HashMap<>();
+ for (String connectionStringPiece : connectionString.split(";")) {
+ String[] kvp = connectionStringPiece.split("=", 2);
+ connectionStringPieces.put(kvp[0].toLowerCase(Locale.ROOT), kvp[1]);
+ }
+ String accountName = connectionStringPieces.get(ACCOUNT_NAME);
+ try {
+ this.endpoint = new URL(String.format("https://%s.queue.core.windows.net", accountName));
+ } catch (MalformedURLException e) {
+ throw new IllegalArgumentException(String.format("There is no valid endpoint for the connection string. "
+ + "Connection String: %s", connectionString));
+ }
+ }
/**
* Sets the HTTP client to use for sending and receiving requests to and from the service.
*
* @param httpClient The HTTP client to use for requests.
- * @return The updated QueueServiceClientBuilder object.
+ * @return The updated QueueStorageClientBuilder object.
* @throws NullPointerException If {@code httpClient} is {@code null}.
*/
- public QueueServiceClientBuilder httpClient(HttpClient httpClient) {
+ public QueueStorageClientBuilder httpClient(HttpClient httpClient) {
this.httpClient = httpClient;
return this;
}
@@ -250,10 +269,10 @@ public QueueServiceClientBuilder httpClient(HttpClient httpClient) {
* Adds a policy to the set of existing policies that are executed after the {@link RetryPolicy}.
*
* @param pipelinePolicy The retry policy for service requests.
- * @return The updated QueueServiceClientBuilder object.
+ * @return The updated QueueStorageClientBuilder object.
* @throws NullPointerException If {@code pipelinePolicy} is {@code null}.
*/
- public QueueServiceClientBuilder addPolicy(HttpPipelinePolicy pipelinePolicy) {
+ public QueueStorageClientBuilder addPolicy(HttpPipelinePolicy pipelinePolicy) {
this.policies.add(pipelinePolicy);
return this;
}
@@ -262,9 +281,9 @@ public QueueServiceClientBuilder addPolicy(HttpPipelinePolicy pipelinePolicy) {
* Sets the logging level for HTTP requests and responses.
*
* @param logLevel The amount of logging output when sending and receiving HTTP requests/responses.
- * @return The updated QueueServiceClientBuilder object.
+ * @return The updated QueueStorageClientBuilder object.
*/
- public QueueServiceClientBuilder httpLogDetailLevel(HttpLogDetailLevel logLevel) {
+ public QueueStorageClientBuilder httpLogDetailLevel(HttpLogDetailLevel logLevel) {
this.logLevel = logLevel;
return this;
}
@@ -272,14 +291,14 @@ public QueueServiceClientBuilder httpLogDetailLevel(HttpLogDetailLevel logLevel)
/**
* Sets the HTTP pipeline to use for the service client.
*
- * If {@code pipeline} is set, all other settings are ignored, aside from {@link QueueServiceClientBuilder#endpoint(String) endpoint}
+ * If {@code pipeline} is set, all other settings are ignored, aside from {@link QueueStorageClientBuilder#endpoint(String) endpoint}
* when building clients.
*
* @param pipeline The HTTP pipeline to use for sending service requests and receiving responses.
- * @return The updated QueueServiceClientBuilder object.
+ * @return The updated QueueStorageClientBuilder object.
* @throws NullPointerException If {@code pipeline} is {@code null}.
*/
- public QueueServiceClientBuilder pipeline(HttpPipeline pipeline) {
+ public QueueStorageClientBuilder pipeline(HttpPipeline pipeline) {
Objects.requireNonNull(pipeline);
this.pipeline = pipeline;
return this;
@@ -292,9 +311,9 @@ public QueueServiceClientBuilder pipeline(HttpPipeline pipeline) {
* configuration store}, use {@link Configuration#NONE} to bypass using configuration settings during construction.
*
* @param configuration The configuration store used to
- * @return The updated QueueServiceClientBuilder object.
+ * @return The updated QueueStorageClientBuilder object.
*/
- public QueueServiceClientBuilder configuration(Configuration configuration) {
+ public QueueStorageClientBuilder configuration(Configuration configuration) {
this.configuration = configuration;
return this;
}
diff --git a/storage/client/queue/src/main/java/com/azure/storage/queue/models/QueuesSegmentOptions.java b/storage/client/queue/src/main/java/com/azure/storage/queue/models/QueuesSegmentOptions.java
index d58b2f71b8d05..d72ed389d9e0a 100644
--- a/storage/client/queue/src/main/java/com/azure/storage/queue/models/QueuesSegmentOptions.java
+++ b/storage/client/queue/src/main/java/com/azure/storage/queue/models/QueuesSegmentOptions.java
@@ -2,8 +2,8 @@
// Licensed under the MIT License.
package com.azure.storage.queue.models;
-import com.azure.storage.queue.QueueServiceAsyncClient;
-import com.azure.storage.queue.QueueServiceClient;
+import com.azure.storage.queue.QueueStorageAsyncClient;
+import com.azure.storage.queue.QueueStorageClient;
/**
* A set of options for selecting queues from Storage Queue service.
@@ -23,8 +23,8 @@
*
*
*
- * @see QueueServiceClient
- * @see QueueServiceAsyncClient
+ * @see QueueStorageClient
+ * @see QueueStorageAsyncClient
*/
public final class QueuesSegmentOptions {
private boolean includeMetadata;
diff --git a/storage/client/queue/src/samples/java/com/azure/storage/queue/MessageSamples.java b/storage/client/queue/src/samples/java/com/azure/storage/queue/MessageSamples.java
index 1372d45b9e808..91c5e19b898c0 100644
--- a/storage/client/queue/src/samples/java/com/azure/storage/queue/MessageSamples.java
+++ b/storage/client/queue/src/samples/java/com/azure/storage/queue/MessageSamples.java
@@ -21,11 +21,11 @@ public class MessageSamples {
*/
public static void main(String[] args) throws InterruptedException {
// Build Queue Client using SAS Token
- String queueServiceURL = String.format("https://%s.queue.core.windows.net/%s", ACCOUNT_NAME, SAS_TOKEN);
- QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).buildClient();
+ String queueStorageURL = String.format("https://%s.queue.core.windows.net/%s", ACCOUNT_NAME, SAS_TOKEN);
+ QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).buildClient();
// Create a queue client
- Response queueClientResponse = queueServiceClient.createQueue(generateRandomName("enqueue", 16));
+ Response queueClientResponse = queueStorageClient.createQueue(generateRandomName("enqueue", 16));
QueueClient queueClient = queueClientResponse.value();
// Using queue client to enqueue several "Hello World" messages into queue.
for (int i = 0; i < 3; i++) {
diff --git a/storage/client/queue/src/samples/java/com/azure/storage/queue/QueueExceptionSamples.java b/storage/client/queue/src/samples/java/com/azure/storage/queue/QueueExceptionSamples.java
index d0ee4c8f2aed4..9add00b53b035 100644
--- a/storage/client/queue/src/samples/java/com/azure/storage/queue/QueueExceptionSamples.java
+++ b/storage/client/queue/src/samples/java/com/azure/storage/queue/QueueExceptionSamples.java
@@ -16,17 +16,17 @@ public class QueueExceptionSamples {
/**
* The main method shows how to handle the storage exception.
* @param args No args needed for the main method.
- * @throws RuntimeException If queueServiceClient failed to create a queue.
+ * @throws RuntimeException If queueStorageClient failed to create a queue.
*/
public static void main(String[] args) {
// Create a queue service client.
- String queueServiceURL = String.format("https://%s.queue.core.windows.net/%s", ACCOUNT_NAME, SAS_TOKEN);
- QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).buildClient();
+ String queueStorageURL = String.format("https://%s.queue.core.windows.net/%s", ACCOUNT_NAME, SAS_TOKEN);
+ QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).buildClient();
// Create queue client.
Response queueClientResponse;
try {
- queueClientResponse = queueServiceClient.createQueue(generateRandomName("delete-not-exist", 16));
+ queueClientResponse = queueStorageClient.createQueue(generateRandomName("delete-not-exist", 16));
System.out.println("Successfully create the queue! Status code: " + String.valueOf(queueClientResponse.statusCode()));
} catch (StorageErrorException e) {
System.out.println(String.format("Error creating a queue. Error message: %s", e.value().message()));
diff --git a/storage/client/queue/src/samples/java/com/azure/storage/queue/QueueServiceSamples.java b/storage/client/queue/src/samples/java/com/azure/storage/queue/QueueStorageSamples.java
similarity index 68%
rename from storage/client/queue/src/samples/java/com/azure/storage/queue/QueueServiceSamples.java
rename to storage/client/queue/src/samples/java/com/azure/storage/queue/QueueStorageSamples.java
index ed1a9875a3d03..6bdc673725d76 100644
--- a/storage/client/queue/src/samples/java/com/azure/storage/queue/QueueServiceSamples.java
+++ b/storage/client/queue/src/samples/java/com/azure/storage/queue/QueueStorageSamples.java
@@ -5,7 +5,7 @@
import static com.azure.storage.queue.SampleHelper.generateRandomName;
-public class QueueServiceSamples {
+public class QueueStorageSamples {
private static final String ACCOUNT_NAME = System.getenv("AZURE_STORAGE_ACCOUNT_NAME");
private static final String SAS_TOKEN = System.getenv("PRIMARY_SAS_TOKEN");
@@ -15,16 +15,16 @@ public class QueueServiceSamples {
*/
public static void main(String[] args) {
// Build Queue Service Client using SAS Token
- String queueServiceURL = String.format("https://%s.queue.core.windows.net/%s", ACCOUNT_NAME, SAS_TOKEN);
- QueueServiceClient queueServiceClient = new QueueServiceClientBuilder().endpoint(queueServiceURL).buildClient();
- queueServiceClient.createQueue(generateRandomName("create-queue", 16));
+ String queueStorageURL = String.format("https://%s.queue.core.windows.net/%s", ACCOUNT_NAME, SAS_TOKEN);
+ QueueStorageClient queueStorageClient = new QueueStorageClientBuilder().endpoint(queueStorageURL).buildClient();
+ queueStorageClient.createQueue(generateRandomName("create-queue", 16));
// Create another queue and list all queues, print the name and then delete the queue.
- queueServiceClient.createQueue(generateRandomName("create-extra", 16));
- queueServiceClient.listQueues().forEach(
+ queueStorageClient.createQueue(generateRandomName("create-extra", 16));
+ queueStorageClient.listQueues().forEach(
queueItem -> {
System.out.println("The queue name is: " + queueItem.name());
- queueServiceClient.deleteQueue(queueItem.name());
+ queueStorageClient.deleteQueue(queueItem.name());
}
);
}
diff --git a/storage/client/queue/src/samples/java/com/azure/storage/queue/javadoc/QueueServiceJavaDocCodeSamples.java b/storage/client/queue/src/samples/java/com/azure/storage/queue/javadoc/QueueStorageJavaDocCodeSamples.java
similarity index 50%
rename from storage/client/queue/src/samples/java/com/azure/storage/queue/javadoc/QueueServiceJavaDocCodeSamples.java
rename to storage/client/queue/src/samples/java/com/azure/storage/queue/javadoc/QueueStorageJavaDocCodeSamples.java
index 3ed03621fbf76..840c0cde62b53 100644
--- a/storage/client/queue/src/samples/java/com/azure/storage/queue/javadoc/QueueServiceJavaDocCodeSamples.java
+++ b/storage/client/queue/src/samples/java/com/azure/storage/queue/javadoc/QueueStorageJavaDocCodeSamples.java
@@ -7,9 +7,9 @@
import com.azure.storage.common.credentials.SASTokenCredential;
import com.azure.storage.common.credentials.SharedKeyCredential;
import com.azure.storage.queue.QueueClient;
-import com.azure.storage.queue.QueueServiceAsyncClient;
-import com.azure.storage.queue.QueueServiceClient;
-import com.azure.storage.queue.QueueServiceClientBuilder;
+import com.azure.storage.queue.QueueStorageAsyncClient;
+import com.azure.storage.queue.QueueStorageClient;
+import com.azure.storage.queue.QueueStorageClientBuilder;
import com.azure.storage.queue.models.QueuesSegmentOptions;
import com.azure.storage.queue.models.StorageServiceProperties;
import com.azure.storage.queue.models.StorageServiceStats;
@@ -17,353 +17,353 @@
import java.util.Map;
/**
- * Contains code snippets when generating javadocs through doclets for {@link QueueServiceClient} and {@link QueueServiceAsyncClient}.
+ * Contains code snippets when generating javadocs through doclets for {@link QueueStorageClient} and {@link QueueStorageAsyncClient}.
*/
-public class QueueServiceJavaDocCodeSamples {
+public class QueueStorageJavaDocCodeSamples {
/**
- * Generates code sample for creating a {@link QueueServiceClient}.
+ * Generates code sample for creating a {@link QueueStorageClient}.
*/
- public void buildQueueServiceClient() {
- // BEGIN: com.azure.storage.queue.queueServiceClient.instantiation
- QueueServiceClient client = new QueueServiceClientBuilder()
+ public void buildQueueStorageClient() {
+ // BEGIN: com.azure.storage.queue.queueStorageClient.instantiation
+ QueueStorageClient client = new QueueStorageClientBuilder()
.connectionString("connectionstring")
.endpoint("endpoint")
.buildClient();
- // END: com.azure.storage.queue.queueServiceClient.instantiation
+ // END: com.azure.storage.queue.queueStorageClient.instantiation
}
/**
- * Generates code sample for creating a {@link QueueServiceAsyncClient}.
+ * Generates code sample for creating a {@link QueueStorageAsyncClient}.
*/
- public void buildQueueServiceAsyncClient() {
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.instantiation
- QueueServiceAsyncClient client = new QueueServiceClientBuilder()
+ public void buildQueueStorageAsyncClient() {
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.instantiation
+ QueueStorageAsyncClient client = new QueueStorageClientBuilder()
.connectionString("connectionstring")
.endpoint("endpoint")
.buildAsyncClient();
- // END: com.azure.storage.queue.queueServiceAsyncClient.instantiation
+ // END: com.azure.storage.queue.queueStorageAsyncClient.instantiation
}
/**
- * Generates code sample for creating a {@link QueueServiceClient} with {@link SASTokenCredential}
- * @return An instance of {@link QueueServiceClient}
+ * Generates code sample for creating a {@link QueueStorageClient} with {@link SASTokenCredential}
+ * @return An instance of {@link QueueStorageClient}
*/
- public QueueServiceClient createClientWithSASToken() {
- // BEGIN: com.azure.storage.queue.queueServiceClient.instantiation.sastoken
- QueueServiceClient queueServiceClient = new QueueServiceClientBuilder()
+ public QueueStorageClient createClientWithSASToken() {
+ // BEGIN: com.azure.storage.queue.queueStorageClient.instantiation.sastoken
+ QueueStorageClient queueStorageClient = new QueueStorageClientBuilder()
.endpoint("https://${accountName}.queue.core.windows.net?${SASToken}")
.buildClient();
- // END: com.azure.storage.queue.queueServiceClient.instantiation.sastoken
- return queueServiceClient;
+ // END: com.azure.storage.queue.queueStorageClient.instantiation.sastoken
+ return queueStorageClient;
}
/**
- * Generates code sample for creating a {@link QueueServiceAsyncClient} with {@link SASTokenCredential}
- * @return An instance of {@link QueueServiceAsyncClient}
+ * Generates code sample for creating a {@link QueueStorageAsyncClient} with {@link SASTokenCredential}
+ * @return An instance of {@link QueueStorageAsyncClient}
*/
- public QueueServiceAsyncClient createAsyncClientWithSASToken() {
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.instantiation.sastoken
- QueueServiceAsyncClient queueServiceAsyncClient = new QueueServiceClientBuilder()
+ public QueueStorageAsyncClient createAsyncClientWithSASToken() {
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.instantiation.sastoken
+ QueueStorageAsyncClient queueStorageAsyncClient = new QueueStorageClientBuilder()
.endpoint("https://{accountName}.queue.core.windows.net?{SASToken}")
.buildAsyncClient();
- // END: com.azure.storage.queue.queueServiceAsyncClient.instantiation.sastoken
- return queueServiceAsyncClient;
+ // END: com.azure.storage.queue.queueStorageAsyncClient.instantiation.sastoken
+ return queueStorageAsyncClient;
}
/**
- * Generates code sample for creating a {@link QueueServiceClient} with {@link SASTokenCredential}
- * @return An instance of {@link QueueServiceClient}
+ * Generates code sample for creating a {@link QueueStorageClient} with {@link SASTokenCredential}
+ * @return An instance of {@link QueueStorageClient}
*/
- public QueueServiceClient createClientWithCredential() {
- // BEGIN: com.azure.storage.queue.queueServiceClient.instantiation.credential
- QueueServiceClient queueServiceClient = new QueueServiceClientBuilder()
+ public QueueStorageClient createClientWithCredential() {
+ // BEGIN: com.azure.storage.queue.queueStorageClient.instantiation.credential
+ QueueStorageClient queueStorageClient = new QueueStorageClientBuilder()
.endpoint("https://${accountName}.queue.core.windows.net")
.credential(SASTokenCredential.fromQuery("{SASTokenQueryParams}"))
.buildClient();
- // END: com.azure.storage.queue.queueServiceClient.instantiation.credential
- return queueServiceClient;
+ // END: com.azure.storage.queue.queueStorageClient.instantiation.credential
+ return queueStorageClient;
}
/**
- * Generates code sample for creating a {@link QueueServiceAsyncClient} with {@link SASTokenCredential}
- * @return An instance of {@link QueueServiceAsyncClient}
+ * Generates code sample for creating a {@link QueueStorageAsyncClient} with {@link SASTokenCredential}
+ * @return An instance of {@link QueueStorageAsyncClient}
*/
- public QueueServiceAsyncClient createAsyncClientWithCredential() {
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.instantiation.credential
- QueueServiceAsyncClient queueServiceAsyncClient = new QueueServiceClientBuilder()
+ public QueueStorageAsyncClient createAsyncClientWithCredential() {
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.instantiation.credential
+ QueueStorageAsyncClient queueStorageAsyncClient = new QueueStorageClientBuilder()
.endpoint("https://{accountName}.queue.core.windows.net")
.credential(SASTokenCredential.fromQuery("{SASTokenQueryParams}"))
.buildAsyncClient();
- // END: com.azure.storage.queue.queueServiceAsyncClient.instantiation.credential
- return queueServiceAsyncClient;
+ // END: com.azure.storage.queue.queueStorageAsyncClient.instantiation.credential
+ return queueStorageAsyncClient;
}
/**
- * Generates code sample for creating a {@link QueueServiceClient} with {@code connectionString} which turns into {@link SharedKeyCredential}
- * @return An instance of {@link QueueServiceClient}
+ * Generates code sample for creating a {@link QueueStorageClient} with {@code connectionString} which turns into {@link SharedKeyCredential}
+ * @return An instance of {@link QueueStorageClient}
*/
- public QueueServiceClient createClientWithConnectionString() {
- // BEGIN: com.azure.storage.queue.queueServiceClient.instantiation.connectionstring
+ public QueueStorageClient createClientWithConnectionString() {
+ // BEGIN: com.azure.storage.queue.queueStorageClient.instantiation.connectionstring
String connectionString = "DefaultEndpointsProtocol=https;AccountName={name};"
+ "AccountKey={key};EndpointSuffix={core.windows.net}";
- QueueServiceClient queueServiceClient = new QueueServiceClientBuilder()
+ QueueStorageClient queueStorageClient = new QueueStorageClientBuilder()
.connectionString(connectionString)
.buildClient();
- // END: com.azure.storage.queue.queueServiceClient.instantiation.connectionstring
- return queueServiceClient;
+ // END: com.azure.storage.queue.queueStorageClient.instantiation.connectionstring
+ return queueStorageClient;
}
/**
- * Generates code sample for creating a {@link QueueServiceAsyncClient} with {@code connectionString} which turns into {@link SharedKeyCredential}
- * @return An instance of {@link QueueServiceAsyncClient}
+ * Generates code sample for creating a {@link QueueStorageAsyncClient} with {@code connectionString} which turns into {@link SharedKeyCredential}
+ * @return An instance of {@link QueueStorageAsyncClient}
*/
- public QueueServiceAsyncClient createAsyncClientWithConnectionString() {
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.instantiation.connectionstring
+ public QueueStorageAsyncClient createAsyncClientWithConnectionString() {
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.instantiation.connectionstring
String connectionString = "DefaultEndpointsProtocol=https;AccountName={name};"
+ "AccountKey={key};EndpointSuffix={core.windows.net}";
- QueueServiceAsyncClient queueServiceAsyncClient = new QueueServiceClientBuilder()
+ QueueStorageAsyncClient queueStorageAsyncClient = new QueueStorageClientBuilder()
.connectionString(connectionString)
.buildAsyncClient();
- // END: com.azure.storage.queue.queueServiceAsyncClient.instantiation.connectionstring
- return queueServiceAsyncClient;
+ // END: com.azure.storage.queue.queueStorageAsyncClient.instantiation.connectionstring
+ return queueStorageAsyncClient;
}
/**
- * Generates a code sample for using {@link QueueServiceClient#createQueue(String)}
+ * Generates a code sample for using {@link QueueStorageClient#createQueue(String)}
*/
public void createQueue() {
- QueueServiceClient queueServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceClient.createQueue#string
- Response response = queueServiceClient.createQueue("myqueue");
+ QueueStorageClient queueStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageClient.createQueue#string
+ Response response = queueStorageClient.createQueue("myqueue");
System.out.println("Complete creating queue with status code: " + response.statusCode());
- // END: com.azure.storage.queue.queueServiceClient.createQueue#string
+ // END: com.azure.storage.queue.queueStorageClient.createQueue#string
}
/**
- * Generates a code sample for using {@link QueueServiceAsyncClient#createQueue(String)}
+ * Generates a code sample for using {@link QueueStorageAsyncClient#createQueue(String)}
*/
public void createQueueAsync() {
- QueueServiceAsyncClient queueServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.createQueue#string
- queueServiceAsyncClient.createQueue("myqueue").subscribe(
+ QueueStorageAsyncClient queueStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.createQueue#string
+ queueStorageAsyncClient.createQueue("myqueue").subscribe(
response -> { },
error -> System.err.print(error.toString()),
() -> System.out.println("Complete creating the queue!")
);
- // END: com.azure.storage.queue.queueServiceAsyncClient.createQueue#string
+ // END: com.azure.storage.queue.queueStorageAsyncClient.createQueue#string
}
/**
- * Generates a code sample for using {@link QueueServiceClient#createQueue(String, Map)}
+ * Generates a code sample for using {@link QueueStorageClient#createQueue(String, Map)}
*/
public void createQueueMaxOverload() {
- QueueServiceClient queueServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceClient.createQueue#string-map
- Response response = queueServiceClient.createQueue("myqueue",
+ QueueStorageClient queueStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageClient.createQueue#string-map
+ Response response = queueStorageClient.createQueue("myqueue",
Collections.singletonMap("queue", "metadata"));
System.out.println("Complete creating queue with status code: " + response.statusCode());
- // END: com.azure.storage.queue.queueServiceClient.createQueue#string-map
+ // END: com.azure.storage.queue.queueStorageClient.createQueue#string-map
}
/**
- * Generates a code sample for using {@link QueueServiceAsyncClient#createQueue(String, Map)}
+ * Generates a code sample for using {@link QueueStorageAsyncClient#createQueue(String, Map)}
*/
public void createQueueAsyncMaxOverload() {
- QueueServiceAsyncClient queueServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.createQueue#string-map
- queueServiceAsyncClient.createQueue("myqueue", Collections.singletonMap("queue", "metadata"))
+ QueueStorageAsyncClient queueStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.createQueue#string-map
+ queueStorageAsyncClient.createQueue("myqueue", Collections.singletonMap("queue", "metadata"))
.subscribe(
response -> System.out.printf("Creating the queue with status code %d", response.statusCode()),
error -> System.err.print(error.toString()),
() -> System.out.println("Complete creating the queue!")
);
- // END: com.azure.storage.queue.queueServiceAsyncClient.createQueue#string-map
+ // END: com.azure.storage.queue.queueStorageAsyncClient.createQueue#string-map
}
/**
- * Generates a code sample for using {@link QueueServiceClient#listQueues()}
+ * Generates a code sample for using {@link QueueStorageClient#listQueues()}
*/
public void listQueues() {
- QueueServiceClient queueServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceClient.listQueues
- queueServiceClient.listQueues().forEach(
+ QueueStorageClient queueStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageClient.listQueues
+ queueStorageClient.listQueues().forEach(
queueItem -> System.out.printf("Queue %s exists in the account", queueItem.name())
);
- // END: com.azure.storage.queue.queueServiceClient.listQueues
+ // END: com.azure.storage.queue.queueStorageClient.listQueues
}
/**
- * Generates a code sample for using {@link QueueServiceAsyncClient#listQueues()}
+ * Generates a code sample for using {@link QueueStorageAsyncClient#listQueues()}
*/
public void listQueuesAsync() {
- QueueServiceAsyncClient queueServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.listQueues
- queueServiceAsyncClient.listQueues().subscribe(
+ QueueStorageAsyncClient queueStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.listQueues
+ queueStorageAsyncClient.listQueues().subscribe(
queueItem -> System.out.printf("Queue %s exists in the account", queueItem.name()),
error -> System.err.print(error.toString()),
() -> System.out.println("Complete listing the queues!")
);
- // END: com.azure.storage.queue.queueServiceAsyncClient.listQueues
+ // END: com.azure.storage.queue.queueStorageAsyncClient.listQueues
}
/**
- * Generates a code sample for using {@link QueueServiceClient#listQueues(QueuesSegmentOptions)} )}
+ * Generates a code sample for using {@link QueueStorageClient#listQueues(QueuesSegmentOptions)} )}
*/
public void listQueuesWithOverload() {
- QueueServiceClient queueServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceClient.listQueues#queueSergmentOptions
- queueServiceClient.listQueues(new QueuesSegmentOptions().prefix("azure")).forEach(
+ QueueStorageClient queueStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageClient.listQueues#queueSergmentOptions
+ queueStorageClient.listQueues(new QueuesSegmentOptions().prefix("azure")).forEach(
queueItem -> System.out.printf("Queue %s exists in the account and has metadata %s",
queueItem.name(), queueItem.metadata())
);
- // END: com.azure.storage.queue.queueServiceClient.listQueues#queueSergmentOptions
+ // END: com.azure.storage.queue.queueStorageClient.listQueues#queueSergmentOptions
}
/**
- * Generates a code sample for using {@link QueueServiceAsyncClient#listQueues(QueuesSegmentOptions)}
+ * Generates a code sample for using {@link QueueStorageAsyncClient#listQueues(QueuesSegmentOptions)}
*/
public void listQueuesAsyncWithOverload() {
- QueueServiceAsyncClient queueServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.listQueues#queueSergmentOptions
- queueServiceAsyncClient.listQueues(new QueuesSegmentOptions().prefix("azure")).subscribe(
+ QueueStorageAsyncClient queueStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.listQueues#queueSergmentOptions
+ queueStorageAsyncClient.listQueues(new QueuesSegmentOptions().prefix("azure")).subscribe(
queueItem -> System.out.printf("Queue %s exists in the account and has metadata %s",
queueItem.name(), queueItem.metadata()),
error -> System.err.print(error.toString()),
() -> System.out.println("Complete listing the queues!")
);
- // END: com.azure.storage.queue.queueServiceAsyncClient.listQueues#queueSergmentOptions
+ // END: com.azure.storage.queue.queueStorageAsyncClient.listQueues#queueSergmentOptions
}
/**
- * Generates a code sample for using {@link QueueServiceClient#deleteQueue(String)}
+ * Generates a code sample for using {@link QueueStorageClient#deleteQueue(String)}
*/
public void deleteQueue() {
- QueueServiceClient queueServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceClient.deleteQueue#string
- VoidResponse response = queueServiceClient.deleteQueue("myqueue");
+ QueueStorageClient queueStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageClient.deleteQueue#string
+ VoidResponse response = queueStorageClient.deleteQueue("myqueue");
System.out.println("Complete deleting the queue with status code: " + response.statusCode());
- // END: com.azure.storage.queue.queueServiceClient.deleteQueue#string
+ // END: com.azure.storage.queue.queueStorageClient.deleteQueue#string
}
/**
- * Generates a code sample for using {@link QueueServiceAsyncClient#deleteQueue(String)}
+ * Generates a code sample for using {@link QueueStorageAsyncClient#deleteQueue(String)}
*/
public void deleteQueueAsync() {
- QueueServiceAsyncClient queueServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.deleteQueue#string
- queueServiceAsyncClient.deleteQueue("myshare").subscribe(
+ QueueStorageAsyncClient queueStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.deleteQueue#string
+ queueStorageAsyncClient.deleteQueue("myshare").subscribe(
response -> System.out.println("Deleting the queue completed with status code: " + response.statusCode())
);
- // END: com.azure.storage.queue.queueServiceAsyncClient.deleteQueue#string
+ // END: com.azure.storage.queue.queueStorageAsyncClient.deleteQueue#string
}
/**
- * Generates a code sample for using {@link QueueServiceClient#getProperties()}
+ * Generates a code sample for using {@link QueueStorageClient#getProperties()}
*/
public void getProperties() {
- QueueServiceClient queueServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceClient.getProperties
- StorageServiceProperties properties = queueServiceClient.getProperties().value();
+ QueueStorageClient queueStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageClient.getProperties
+ StorageServiceProperties properties = queueStorageClient.getProperties().value();
System.out.printf("Hour metrics enabled: %b, Minute metrics enabled: %b",
properties.hourMetrics().enabled(), properties.minuteMetrics().enabled());
- // END: com.azure.storage.queue.queueServiceClient.getProperties
+ // END: com.azure.storage.queue.queueStorageClient.getProperties
}
/**
- * Generates a code sample for using {@link QueueServiceAsyncClient#getProperties()}
+ * Generates a code sample for using {@link QueueStorageAsyncClient#getProperties()}
*/
public void getPropertiesAsync() {
- QueueServiceAsyncClient queueServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.getProperties
- queueServiceAsyncClient.getProperties()
+ QueueStorageAsyncClient queueStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.getProperties
+ queueStorageAsyncClient.getProperties()
.subscribe(response -> {
StorageServiceProperties properties = response.value();
System.out.printf("Hour metrics enabled: %b, Minute metrics enabled: %b",
properties.hourMetrics().enabled(), properties.minuteMetrics().enabled());
});
- // END: com.azure.storage.queue.queueServiceAsyncClient.getProperties
+ // END: com.azure.storage.queue.queueStorageAsyncClient.getProperties
}
/**
- * Generates a code sample for using {@link QueueServiceClient#setProperties(StorageServiceProperties)}
+ * Generates a code sample for using {@link QueueStorageClient#setProperties(StorageServiceProperties)}
*/
public void setProperties() {
- QueueServiceClient queueServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceClient.setProperties#storageServiceProperties
- StorageServiceProperties properties = queueServiceClient.getProperties().value();
+ QueueStorageClient queueStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageClient.setProperties#storageServiceProperties
+ StorageServiceProperties properties = queueStorageClient.getProperties().value();
properties.cors(Collections.emptyList());
- VoidResponse response = queueServiceClient.setProperties(properties);
+ VoidResponse response = queueStorageClient.setProperties(properties);
System.out.printf("Setting Queue service properties completed with status code %d", response.statusCode());
- // END: com.azure.storage.queue.queueServiceClient.setProperties#storageServiceProperties
+ // END: com.azure.storage.queue.queueStorageClient.setProperties#storageServiceProperties
}
/**
- * Generates a code sample for using {@link QueueServiceAsyncClient#setProperties(StorageServiceProperties)}
+ * Generates a code sample for using {@link QueueStorageAsyncClient#setProperties(StorageServiceProperties)}
*/
public void setPropertiesAsync() {
- QueueServiceAsyncClient queueServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.setProperties#storageServiceProperties
- StorageServiceProperties properties = queueServiceAsyncClient.getProperties().block().value();
- queueServiceAsyncClient.setProperties(properties)
+ QueueStorageAsyncClient queueStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.setProperties#storageServiceProperties
+ StorageServiceProperties properties = queueStorageAsyncClient.getProperties().block().value();
+ queueStorageAsyncClient.setProperties(properties)
.subscribe(response -> System.out.printf("Setting Queue service properties completed with status code %d",
response.statusCode()));
- // END: com.azure.storage.queue.queueServiceAsyncClient.setProperties#storageServiceProperties
+ // END: com.azure.storage.queue.queueStorageAsyncClient.setProperties#storageServiceProperties
}
/**
- * Generates a code sample for using {@link QueueServiceClient#setProperties(StorageServiceProperties)} with metrics enabled.
+ * Generates a code sample for using {@link QueueStorageClient#setProperties(StorageServiceProperties)} with metrics enabled.
*/
public void setPropertiesEnableMetrics() {
- QueueServiceClient queueServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceClient.setPropertiesEnableMetrics#storageServiceProperties
- StorageServiceProperties properties = queueServiceClient.getProperties().value();
+ QueueStorageClient queueStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageClient.setPropertiesEnableMetrics#storageServiceProperties
+ StorageServiceProperties properties = queueStorageClient.getProperties().value();
properties.minuteMetrics().enabled(true);
properties.hourMetrics().enabled(true);
- VoidResponse response = queueServiceClient.setProperties(properties);
+ VoidResponse response = queueStorageClient.setProperties(properties);
System.out.printf("Setting Queue service properties completed with status code %d", response.statusCode());
- // END: com.azure.storage.queue.queueServiceClient.setPropertiesEnableMetrics#storageServiceProperties
+ // END: com.azure.storage.queue.queueStorageClient.setPropertiesEnableMetrics#storageServiceProperties
}
/**
- * Generates a code sample for using {@link QueueServiceAsyncClient#setProperties(StorageServiceProperties)} with metrics enabled.
+ * Generates a code sample for using {@link QueueStorageAsyncClient#setProperties(StorageServiceProperties)} with metrics enabled.
*/
public void setPropertiesAsyncEnableMetrics() {
- QueueServiceAsyncClient queueServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.setPropertiesEnableMetrics#storageServiceProperties
- StorageServiceProperties properties = queueServiceAsyncClient.getProperties().block().value();
+ QueueStorageAsyncClient queueStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.setPropertiesEnableMetrics#storageServiceProperties
+ StorageServiceProperties properties = queueStorageAsyncClient.getProperties().block().value();
properties.minuteMetrics().enabled(true);
properties.hourMetrics().enabled(true);
- queueServiceAsyncClient.setProperties(properties)
+ queueStorageAsyncClient.setProperties(properties)
.subscribe(response -> System.out.printf("Setting Queue service properties completed with status code %d",
response.statusCode()));
- // END: com.azure.storage.queue.queueServiceAsyncClient.setPropertiesEnableMetrics#storageServiceProperties
+ // END: com.azure.storage.queue.queueStorageAsyncClient.setPropertiesEnableMetrics#storageServiceProperties
}
/**
- * Generates a code sample for using {@link QueueServiceClient#getStatistics()}
+ * Generates a code sample for using {@link QueueStorageClient#getStatistics()}
*/
public void getStatistics() {
- QueueServiceClient queueServiceClient = createClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceClient.getStatistics
- StorageServiceStats stats = queueServiceClient.getStatistics().value();
+ QueueStorageClient queueStorageClient = createClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageClient.getStatistics
+ StorageServiceStats stats = queueStorageClient.getStatistics().value();
System.out.printf("Geo replication status: %s, Last synced: %s",
stats.geoReplication().status(), stats.geoReplication().lastSyncTime());
- // END: com.azure.storage.queue.queueServiceClient.getStatistics
+ // END: com.azure.storage.queue.queueStorageClient.getStatistics
}
/**
- * Generates a code sample for using {@link QueueServiceAsyncClient#getStatistics()}
+ * Generates a code sample for using {@link QueueStorageAsyncClient#getStatistics()}
*/
public void getStatisticsAsync() {
- QueueServiceAsyncClient queueServiceAsyncClient = createAsyncClientWithSASToken();
- // BEGIN: com.azure.storage.queue.queueServiceAsyncClient.getStatistics
- queueServiceAsyncClient.getStatistics()
+ QueueStorageAsyncClient queueStorageAsyncClient = createAsyncClientWithSASToken();
+ // BEGIN: com.azure.storage.queue.queueStorageAsyncClient.getStatistics
+ queueStorageAsyncClient.getStatistics()
.subscribe(response -> {
StorageServiceStats stats = response.value();
System.out.printf("Geo replication status: %s, Last synced: %s",
stats.geoReplication().status(), stats.geoReplication().lastSyncTime());
});
- // END: com.azure.storage.queue.queueServiceAsyncClient.getStatistics
+ // END: com.azure.storage.queue.queueStorageAsyncClient.getStatistics
}
}
diff --git a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueAsyncClientTests.java b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueAsyncClientTests.java
index f658e2aff324b..dbea998e6a131 100644
--- a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueAsyncClientTests.java
+++ b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueAsyncClientTests.java
@@ -37,7 +37,6 @@ protected void beforeTest() {
if (interceptorManager.isPlaybackMode()) {
client = helper.setupClient((connectionString, endpoint) -> new QueueClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.queueName(queueName)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
@@ -45,7 +44,6 @@ protected void beforeTest() {
} else {
client = helper.setupClient((connectionString, endpoint) -> new QueueClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.queueName(queueName)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
@@ -253,7 +251,6 @@ public void getAccessPolicy() {
StepVerifier.create(client.create())
.assertNext(response -> helper.assertResponseStatusCode(response, 201))
.verifyComplete();
-
StepVerifier.create(client.getAccessPolicy())
.expectNextCount(0)
.verifyComplete();
diff --git a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueClientTests.java b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueClientTests.java
index c0da15213d8c7..4e3f782d7ec66 100644
--- a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueClientTests.java
+++ b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueClientTests.java
@@ -43,14 +43,13 @@ protected void beforeTest() {
if (interceptorManager.isPlaybackMode()) {
client = helper.setupClient((connectionString, endpoint) -> new QueueClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.queueName(queueName)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.buildClient(), true, logger);
} else {
client = helper.setupClient((connectionString, endpoint) -> new QueueClientBuilder()
- .endpoint(endpoint)
+ .connectionString(connectionString)
.queueName(queueName)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
diff --git a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueServiceAsyncClientTests.java b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueStorageAsyncClientTests.java
similarity index 67%
rename from storage/client/queue/src/test/java/com/azure/storage/queue/QueueServiceAsyncClientTests.java
rename to storage/client/queue/src/test/java/com/azure/storage/queue/QueueStorageAsyncClientTests.java
index 8d0b89aa9be07..99637d4ee5929 100644
--- a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueServiceAsyncClientTests.java
+++ b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueStorageAsyncClientTests.java
@@ -21,10 +21,10 @@
import static org.junit.Assert.assertEquals;
-public class QueueServiceAsyncClientTests extends QueueServiceClientTestsBase {
- private final ClientLogger logger = new ClientLogger(QueueServiceAsyncClientTests.class);
+public class QueueStorageAsyncClientTests extends QueueStorageClientTestsBase {
+ private final ClientLogger logger = new ClientLogger(QueueStorageAsyncClientTests.class);
- private QueueServiceAsyncClient serviceClient;
+ private QueueStorageAsyncClient queueStorageAsyncClient;
@Override
protected void beforeTest() {
@@ -32,16 +32,14 @@ protected void beforeTest() {
helper = new TestHelpers();
if (interceptorManager.isPlaybackMode()) {
- serviceClient = helper.setupClient((connectionString, endpoint) -> new QueueServiceClientBuilder()
+ queueStorageAsyncClient = helper.setupClient((connectionString, endpoint) -> new QueueStorageClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.buildAsyncClient(), true, logger);
} else {
- serviceClient = helper.setupClient((connectionString, endpoint) -> new QueueServiceClientBuilder()
+ queueStorageAsyncClient = helper.setupClient((connectionString, endpoint) -> new QueueStorageClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.addPolicy(interceptorManager.getRecordPolicy())
@@ -51,11 +49,11 @@ protected void beforeTest() {
@Override
protected void afterTest() {
- serviceClient.listQueues(new QueuesSegmentOptions().prefix(queueName))
+ queueStorageAsyncClient.listQueues(new QueuesSegmentOptions().prefix(queueName))
.collectList()
.block()
.forEach(queue -> {
- QueueAsyncClient client = serviceClient.getQueueAsyncClient(queue.name());
+ QueueAsyncClient client = queueStorageAsyncClient.getQueueAsyncClient(queue.name());
try {
client.clearMessages().then(client.delete()).block();
} catch (StorageErrorException ex) {
@@ -66,12 +64,13 @@ protected void afterTest() {
@Override
public void getQueueDoesNotCreateAQueue() {
- StepVerifier.create(serviceClient.getQueueAsyncClient(queueName).enqueueMessage("Expecting an exception"));
+ StepVerifier.create(queueStorageAsyncClient.getQueueAsyncClient(queueName).enqueueMessage("Expecting an exception"))
+ .verifyErrorSatisfies(exception -> helper.assertExceptionStatusCode(exception, 404));
}
@Override
public void createQueue() {
- StepVerifier.create(serviceClient.createQueue(queueName).block().value().enqueueMessage("Testing service client creating a queue"))
+ StepVerifier.create(queueStorageAsyncClient.createQueue(queueName))
.assertNext(response -> helper.assertResponseStatusCode(response, 201))
.verifyComplete();
}
@@ -81,7 +80,7 @@ public void createQueueWithMetadata() {
Map metadata = new HashMap<>();
metadata.put("metadata1", "value1");
metadata.put("metadata2", "value2");
- QueueAsyncClient client = serviceClient.createQueue(queueName, metadata).block().value();
+ QueueAsyncClient client = queueStorageAsyncClient.createQueue(queueName, metadata).block().value();
StepVerifier.create(client.getProperties())
.assertNext(response -> {
@@ -97,11 +96,11 @@ public void createQueueTwiceSameMetadata() {
metadata.put("metadata1", "value1");
metadata.put("metadata2", "value2");
- StepVerifier.create(serviceClient.createQueue(queueName, metadata).block().value().enqueueMessage(messageText))
+ StepVerifier.create(queueStorageAsyncClient.createQueue(queueName, metadata).block().value().enqueueMessage(messageText))
.assertNext(response -> helper.assertResponseStatusCode(response, 201))
.verifyComplete();
- StepVerifier.create(serviceClient.createQueue(queueName, metadata).block().value().peekMessages())
+ StepVerifier.create(queueStorageAsyncClient.createQueue(queueName, metadata).block().value().peekMessages())
.assertNext(response -> assertEquals(messageText, response.messageText()))
.verifyComplete();
}
@@ -112,27 +111,28 @@ public void createQueueTwiceDifferentMetadata() {
metadata.put("metadata1", "value1");
metadata.put("metadata2", "value2");
- try {
- serviceClient.createQueue(queueName);
- serviceClient.createQueue(queueName, metadata);
- } catch (Exception exception) {
- }
+ StepVerifier.create(queueStorageAsyncClient.createQueue(queueName))
+ .assertNext(response -> helper.assertResponseStatusCode(response, 201))
+ .verifyComplete();
+ StepVerifier.create(queueStorageAsyncClient.createQueue(queueName, metadata))
+ .verifyErrorSatisfies(exception -> helper.assertExceptionStatusCode(exception, 409));
+
}
@Override
public void deleteExistingQueue() {
- QueueAsyncClient client = serviceClient.createQueue(queueName).block().value();
- serviceClient.deleteQueue(queueName).block();
-
- StepVerifier.create(client.enqueueMessage("Expecting an exception"));
+ QueueAsyncClient client = queueStorageAsyncClient.createQueue(queueName).block().value();
+ StepVerifier.create(queueStorageAsyncClient.deleteQueue(queueName))
+ .assertNext(response -> helper.assertResponseStatusCode(response, 204))
+ .verifyComplete();
+ StepVerifier.create(client.enqueueMessage("Expecting an exception"))
+ .verifyErrorSatisfies(exception -> helper.assertExceptionStatusCode(exception, 404));
}
@Override
public void deleteNonExistentQueue() {
- try {
- serviceClient.deleteQueue(queueName);
- } catch (Exception exception) {
- }
+ StepVerifier.create(queueStorageAsyncClient.deleteQueue(queueName))
+ .verifyErrorSatisfies(exception -> helper.assertExceptionStatusCode(exception, 404));
}
@Override
@@ -141,10 +141,10 @@ public void listQueues() {
for (int i = 0; i < 3; i++) {
QueueItem queue = new QueueItem().name(queueName + i);
testQueues.add(queue);
- serviceClient.createQueue(queue.name(), queue.metadata()).block();
+ queueStorageAsyncClient.createQueue(queue.name(), queue.metadata()).block();
}
- StepVerifier.create(serviceClient.listQueues(defaultSegmentOptions()))
+ StepVerifier.create(queueStorageAsyncClient.listQueues(defaultSegmentOptions()))
.assertNext(result -> helper.assertQueuesAreEqual(testQueues.pop(), result))
.assertNext(result -> helper.assertQueuesAreEqual(testQueues.pop(), result))
.assertNext(result -> helper.assertQueuesAreEqual(testQueues.pop(), result))
@@ -165,10 +165,10 @@ public void listQueuesIncludeMetadata() {
}
testQueues.add(queue);
- serviceClient.createQueue(queue.name(), queue.metadata()).block();
+ queueStorageAsyncClient.createQueue(queue.name(), queue.metadata()).block();
}
- StepVerifier.create(serviceClient.listQueues(defaultSegmentOptions().includeMetadata(true)))
+ StepVerifier.create(queueStorageAsyncClient.listQueues(defaultSegmentOptions().includeMetadata(true)))
.assertNext(result -> helper.assertQueuesAreEqual(testQueues.pop(), result))
.assertNext(result -> helper.assertQueuesAreEqual(testQueues.pop(), result))
.assertNext(result -> helper.assertQueuesAreEqual(testQueues.pop(), result))
@@ -187,10 +187,10 @@ public void listQueuesWithPrefix() {
queue.name(queueName + i);
}
- serviceClient.createQueue(queue.name(), queue.metadata()).block();
+ queueStorageAsyncClient.createQueue(queue.name(), queue.metadata()).block();
}
- StepVerifier.create(serviceClient.listQueues(defaultSegmentOptions().prefix(queueName + "prefix")))
+ StepVerifier.create(queueStorageAsyncClient.listQueues(defaultSegmentOptions().prefix(queueName + "prefix")))
.assertNext(result -> helper.assertQueuesAreEqual(testQueues.pop(), result))
.assertNext(result -> helper.assertQueuesAreEqual(testQueues.pop(), result))
.verifyComplete();
@@ -202,16 +202,16 @@ public void listQueuesWithLimit() {
for (int i = 0; i < 3; i++) {
QueueItem queue = new QueueItem().name(queueName + i);
testQueues.add(queue);
- serviceClient.createQueue(queue.name(), queue.metadata()).block();
+ queueStorageAsyncClient.createQueue(queue.name(), queue.metadata()).block();
}
- StepVerifier.create(serviceClient.listQueues(defaultSegmentOptions().maxResults(2)))
+ StepVerifier.create(queueStorageAsyncClient.listQueues(defaultSegmentOptions().maxResults(2)))
.verifyComplete();
}
@Override
public void setProperties() {
- StorageServiceProperties originalProperties = serviceClient.getProperties().block().value();
+ StorageServiceProperties originalProperties = queueStorageAsyncClient.getProperties().block().value();
RetentionPolicy retentionPolicy = new RetentionPolicy().enabled(true)
.days(3);
@@ -231,19 +231,19 @@ public void setProperties() {
.minuteMetrics(metrics)
.cors(new ArrayList<>());
- StepVerifier.create(serviceClient.setProperties(updatedProperties))
+ StepVerifier.create(queueStorageAsyncClient.setProperties(updatedProperties))
.assertNext(response -> helper.assertResponseStatusCode(response, 202))
.verifyComplete();
- StepVerifier.create(serviceClient.getProperties())
+ StepVerifier.create(queueStorageAsyncClient.getProperties())
.assertNext(response -> helper.assertQueueServicePropertiesAreEqual(updatedProperties, response.value()))
.verifyComplete();
- StepVerifier.create(serviceClient.setProperties(originalProperties))
+ StepVerifier.create(queueStorageAsyncClient.setProperties(originalProperties))
.assertNext(response -> helper.assertResponseStatusCode(response, 202))
.verifyComplete();
- StepVerifier.create(serviceClient.getProperties())
+ StepVerifier.create(queueStorageAsyncClient.getProperties())
.assertNext(response -> helper.assertQueueServicePropertiesAreEqual(originalProperties, response.value()))
.verifyComplete();
}
diff --git a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueServiceClientTests.java b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueStorageClientTests.java
similarity index 94%
rename from storage/client/queue/src/test/java/com/azure/storage/queue/QueueServiceClientTests.java
rename to storage/client/queue/src/test/java/com/azure/storage/queue/QueueStorageClientTests.java
index c6587872c6fb7..5e8ca179ffed0 100644
--- a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueServiceClientTests.java
+++ b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueStorageClientTests.java
@@ -27,10 +27,10 @@
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.fail;
-public class QueueServiceClientTests extends QueueServiceClientTestsBase {
- private final ClientLogger logger = new ClientLogger(QueueServiceClientTests.class);
+public class QueueStorageClientTests extends QueueStorageClientTestsBase {
+ private final ClientLogger logger = new ClientLogger(QueueStorageClientTests.class);
- private QueueServiceClient serviceClient;
+ private QueueStorageClient serviceClient;
@Override
protected void beforeTest() {
@@ -38,16 +38,14 @@ protected void beforeTest() {
helper = new TestHelpers();
if (interceptorManager.isPlaybackMode()) {
- serviceClient = helper.setupClient((connectionString, endpoint) -> new QueueServiceClientBuilder()
+ serviceClient = helper.setupClient((connectionString, endpoint) -> new QueueStorageClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.httpClient(interceptorManager.getPlaybackClient())
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.buildClient(), true, logger);
} else {
- serviceClient = helper.setupClient((connectionString, endpoint) -> new QueueServiceClientBuilder()
+ serviceClient = helper.setupClient((connectionString, endpoint) -> new QueueStorageClientBuilder()
.connectionString(connectionString)
- .endpoint(endpoint)
.httpClient(HttpClient.createDefault().wiretap(true))
.httpLogDetailLevel(HttpLogDetailLevel.BODY_AND_HEADERS)
.addPolicy(interceptorManager.getRecordPolicy())
@@ -81,8 +79,7 @@ public void getQueueDoesNotCreateAQueue() {
@Override
public void createQueue() {
- QueueClient client = serviceClient.createQueue(queueName).value();
- Response response = client.enqueueMessage("Testing service client creating a queue");
+ Response response = serviceClient.createQueue(queueName);
helper.assertResponseStatusCode(response, 201);
}
diff --git a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueServiceClientTestsBase.java b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueStorageClientTestsBase.java
similarity index 96%
rename from storage/client/queue/src/test/java/com/azure/storage/queue/QueueServiceClientTestsBase.java
rename to storage/client/queue/src/test/java/com/azure/storage/queue/QueueStorageClientTestsBase.java
index 3b86144d6f225..5282dc14ae8ce 100644
--- a/storage/client/queue/src/test/java/com/azure/storage/queue/QueueServiceClientTestsBase.java
+++ b/storage/client/queue/src/test/java/com/azure/storage/queue/QueueStorageClientTestsBase.java
@@ -8,7 +8,7 @@
import org.junit.Test;
import org.junit.rules.TestName;
-public abstract class QueueServiceClientTestsBase extends TestBase {
+public abstract class QueueStorageClientTestsBase extends TestBase {
String queueName;
TestHelpers helper;
diff --git a/storage/client/queue/src/test/resources/session-records/clearMessages.json b/storage/client/queue/src/test/resources/session-records/clearMessages.json
index dab05b23fcfd5..07a85db43830c 100644
--- a/storage/client/queue/src/test/resources/session-records/clearMessages.json
+++ b/storage/client/queue/src/test/resources/session-records/clearMessages.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue39460410",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue98730bc8",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd222863-4003-0028-6775-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT"
+ "x-ms-request-id" : "ce25930e-3003-003e-4335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue39460410/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue98730bc8/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2228a8-4003-0028-1b75-37b82d000000",
- "Body" : "23ac390a-a15c-4036-b933-506b593e817aWed, 10 Jul 2019 23:18:01 GMTWed, 17 Jul 2019 23:18:01 GMTAgAAAAMAAAAAAAAAeGrWt3U31QE=Wed, 10 Jul 2019 23:18:01 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT",
+ "x-ms-request-id" : "ce259319-3003-003e-4d35-468657000000",
+ "Body" : "c2fb9190-ca49-48a2-824c-4e8ad71948a3Mon, 29 Jul 2019 17:45:33 GMTMon, 05 Aug 2019 17:45:33 GMTAgAAAAMAAAAAAAAAhVISbDVG1QE=Mon, 29 Jul 2019 17:45:33 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue39460410/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue98730bc8/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -48,17 +48,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2228d0-4003-0028-3a75-37b82d000000",
- "Body" : "0820c842-8ea6-466f-801e-8fdb0240f573Wed, 10 Jul 2019 23:18:01 GMTWed, 17 Jul 2019 23:18:01 GMTAgAAAAMAAAAAAAAARoLet3U31QE=Wed, 10 Jul 2019 23:18:01 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT",
+ "x-ms-request-id" : "ce25932b-3003-003e-5e35-468657000000",
+ "Body" : "273e9e91-8b9c-4748-a9cd-3291f047b6b3Mon, 29 Jul 2019 17:45:33 GMTMon, 05 Aug 2019 17:45:33 GMTAgAAAAMAAAAAAAAAHdIXbDVG1QE=Mon, 29 Jul 2019 17:45:33 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue39460410/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue98730bc8/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -67,17 +67,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2228f8-4003-0028-5975-37b82d000000",
- "Body" : "1a2b254b-4f28-4dba-8a56-5947173e08faWed, 10 Jul 2019 23:18:01 GMTWed, 17 Jul 2019 23:18:01 GMTAgAAAAMAAAAAAAAA5kvmt3U31QE=Wed, 10 Jul 2019 23:18:01 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT",
+ "x-ms-request-id" : "ce259339-3003-003e-6b35-468657000000",
+ "Body" : "bab2098c-5517-4a1a-ab9c-1a34acef9df6Mon, 29 Jul 2019 17:45:33 GMTMon, 05 Aug 2019 17:45:33 GMTAgAAAAMAAAAAAAAA7J8dbDVG1QE=Mon, 29 Jul 2019 17:45:33 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue39460410?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue98730bc8?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -87,15 +87,15 @@
"Content-Length" : "0",
"x-ms-approximate-messages-count" : "3",
"StatusCode" : "200",
- "x-ms-request-id" : "dd222917-4003-0028-7175-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT"
+ "x-ms-request-id" : "ce259349-3003-003e-7835-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue39460410/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue98730bc8/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -103,15 +103,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd22292f-4003-0028-0775-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT"
+ "x-ms-request-id" : "ce259355-3003-003e-0235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue39460410?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue98730bc8?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -121,15 +121,15 @@
"Content-Length" : "0",
"x-ms-approximate-messages-count" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd222940-4003-0028-1575-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT"
+ "x-ms-request-id" : "ce25936d-3003-003e-1635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue39460410/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue98730bc8/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -137,15 +137,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd22295c-4003-0028-2975-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT"
+ "x-ms-request-id" : "ce259377-3003-003e-2035-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue39460410",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue98730bc8",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -153,9 +153,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222973-4003-0028-3e75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT"
+ "x-ms-request-id" : "ce25938d-3003-003e-3435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
} ],
- "variables" : [ "queue39460410" ]
+ "variables" : [ "queue98730bc8" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/clearMessagesQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/clearMessagesQueueDoesNotExist.json
index 9fb11f03c6960..78933f49f015f 100644
--- a/storage/client/queue/src/test/resources/session-records/clearMessagesQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/clearMessagesQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue0499487b/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue88814a81/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,17 +13,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd223222-4003-0028-3175-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd223222-4003-0028-3175-37b82d000000\nTime:2019-07-10T23:18:05.7976908Z",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT",
+ "x-ms-request-id" : "ce259833-3003-003e-2235-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce259833-3003-003e-2235-468657000000\nTime:2019-07-29T17:45:37.8297771Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue0499487b/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue88814a81/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd223243-4003-0028-4e75-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd223243-4003-0028-4e75-37b82d000000\nTime:2019-07-10T23:18:05.8547315Z",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT",
+ "x-ms-request-id" : "ce259842-3003-003e-2e35-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce259842-3003-003e-2e35-468657000000\nTime:2019-07-29T17:45:37.8628082Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue0499487b" ]
+ "variables" : [ "queue88814a81" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/createQueue.json b/storage/client/queue/src/test/resources/session-records/createQueue.json
index 51d4b6d64f5b5..e5fd795727859 100644
--- a/storage/client/queue/src/test/resources/session-records/createQueue.json
+++ b/storage/client/queue/src/test/resources/session-records/createQueue.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue09262a67",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue57327eda",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,34 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d29065a-6003-009e-2f76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT"
- }
- }, {
- "Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue09262a67/messages?visibilitytimeout=0&messagettl=604800",
- "Headers" : {
- "x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
- "Content-Type" : "application/xml; charset=utf-8"
- },
- "Response" : {
- "Transfer-Encoding" : "chunked",
- "x-ms-version" : "2018-03-28",
- "Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
- "retry-after" : "0",
- "StatusCode" : "201",
- "x-ms-request-id" : "0d290667-6003-009e-3b76-37b6d5000000",
- "Body" : "94fd0809-1708-49c0-91ea-d4cf2141af7fWed, 10 Jul 2019 23:24:47 GMTWed, 17 Jul 2019 23:24:47 GMTAgAAAAMAAAAAAAAAREDwqXY31QE=Wed, 10 Jul 2019 23:24:47 GMT",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT",
- "Content-Type" : "application/xml"
+ "x-ms-request-id" : "ce25c901-3003-003e-0435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue09262a67&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue57327eda&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +29,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d29067f-6003-009e-5376-37b6d5000000",
- "Body" : "queue09262a67queue09262a67",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT",
+ "x-ms-request-id" : "ce25c911-3003-003e-1335-468657000000",
+ "Body" : "queue57327edaqueue57327eda",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue09262a67/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue57327eda/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -66,15 +47,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290694-6003-009e-6676-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT"
+ "x-ms-request-id" : "ce25c91b-3003-003e-1b35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue09262a67",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue57327eda",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -82,9 +63,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d2906a1-6003-009e-7376-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT"
+ "x-ms-request-id" : "ce25c922-3003-003e-2235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
} ],
- "variables" : [ "queue09262a67" ]
+ "variables" : [ "queue57327eda" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/createQueueTwiceDifferentMetadata.json b/storage/client/queue/src/test/resources/session-records/createQueueTwiceDifferentMetadata.json
index e7297afd23b18..989b1a06fac70 100644
--- a/storage/client/queue/src/test/resources/session-records/createQueueTwiceDifferentMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/createQueueTwiceDifferentMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue2172697c",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue48583ded",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290a57-6003-009e-6676-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT"
+ "x-ms-request-id" : "ce25caf4-3003-003e-5c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue2172697c",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue48583ded",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -29,17 +29,17 @@
"retry-after" : "0",
"Content-Length" : "222",
"StatusCode" : "409",
- "x-ms-request-id" : "0d290a73-6003-009e-7e76-37b6d5000000",
- "Body" : "QueueAlreadyExists
The specified queue already exists.\nRequestId:0d290a73-6003-009e-7e76-37b6d5000000\nTime:2019-07-10T23:24:49.9481623Z",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT",
+ "x-ms-request-id" : "ce25cafe-3003-003e-6535-468657000000",
+ "Body" : "QueueAlreadyExists
The specified queue already exists.\nRequestId:ce25cafe-3003-003e-6535-468657000000\nTime:2019-07-29T17:46:18.2170138Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue2172697c&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue48583ded&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290a84-6003-009e-0f76-37b6d5000000",
- "Body" : "queue2172697cqueue2172697c",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT",
+ "x-ms-request-id" : "ce25cb03-3003-003e-6a35-468657000000",
+ "Body" : "queue48583dedqueue48583ded",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue2172697c/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue48583ded/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -66,15 +66,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290a9d-6003-009e-2776-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cb0f-3003-003e-7435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue2172697c",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue48583ded",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -82,9 +82,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290aa4-6003-009e-2d76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cb17-3003-003e-7b35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
} ],
- "variables" : [ "queue2172697c" ]
+ "variables" : [ "queue48583ded" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/createQueueTwiceSameMetadata.json b/storage/client/queue/src/test/resources/session-records/createQueueTwiceSameMetadata.json
index 5f637cb224b88..39d3c8039304f 100644
--- a/storage/client/queue/src/test/resources/session-records/createQueueTwiceSameMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/createQueueTwiceSameMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue3315117d",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue581217e0",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d29094b-6003-009e-0a76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT"
+ "x-ms-request-id" : "ce25ca6d-3003-003e-5935-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue3315117d/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue581217e0/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d29096a-6003-009e-2176-37b6d5000000",
- "Body" : "e59cbb06-dc9a-4fd8-89c9-a62bec05127eWed, 10 Jul 2019 23:24:49 GMTWed, 17 Jul 2019 23:24:49 GMTAgAAAAMAAAAAAAAAh80Wq3Y31QE=Wed, 10 Jul 2019 23:24:49 GMT",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT",
+ "x-ms-request-id" : "ce25ca7e-3003-003e-6935-468657000000",
+ "Body" : "42edd04a-c23f-4073-ac13-6eaadd61bdfdMon, 29 Jul 2019 17:46:17 GMTMon, 05 Aug 2019 17:46:17 GMTAgAAAAMAAAAAAAAAmr5UhjVG1QE=Mon, 29 Jul 2019 17:46:17 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue3315117d",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue581217e0",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -47,15 +47,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290979-6003-009e-2d76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT"
+ "x-ms-request-id" : "ce25ca8b-3003-003e-7635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue3315117d/messages?peekonly=true",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue581217e0/messages?peekonly=true",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -64,17 +64,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d29099f-6003-009e-4b76-37b6d5000000",
- "Body" : "e59cbb06-dc9a-4fd8-89c9-a62bec05127eWed, 10 Jul 2019 23:24:49 GMTWed, 17 Jul 2019 23:24:49 GMT0Testing service client creating the same queue twice does not modify the queue",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT",
+ "x-ms-request-id" : "ce25ca9b-3003-003e-0635-468657000000",
+ "Body" : "42edd04a-c23f-4073-ac13-6eaadd61bdfdMon, 29 Jul 2019 17:46:17 GMTMon, 05 Aug 2019 17:46:17 GMT0Testing service client creating the same queue twice does not modify the queue",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue3315117d&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue581217e0&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -83,17 +83,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d2909d4-6003-009e-7a76-37b6d5000000",
- "Body" : "queue3315117dqueue3315117d",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT",
+ "x-ms-request-id" : "ce25caa8-3003-003e-1335-468657000000",
+ "Body" : "queue581217e0queue581217e0",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue3315117d/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue581217e0/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -101,15 +101,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d2909eb-6003-009e-0e76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT"
+ "x-ms-request-id" : "ce25cab7-3003-003e-2135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue3315117d",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue581217e0",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -117,9 +117,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d2909f9-6003-009e-1b76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT"
+ "x-ms-request-id" : "ce25cac5-3003-003e-2f35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
} ],
- "variables" : [ "queue3315117d" ]
+ "variables" : [ "queue581217e0" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/createQueueWithMetadata.json b/storage/client/queue/src/test/resources/session-records/createQueueWithMetadata.json
index 3c8381cb87770..cf6250825c55b 100644
--- a/storage/client/queue/src/test/resources/session-records/createQueueWithMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/createQueueWithMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue2741227a",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue256856cc",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290770-6003-009e-1d76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25c98c-3003-003e-0635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue2741227a?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue256856cc?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -31,16 +31,16 @@
"x-ms-approximate-messages-count" : "0",
"x-ms-meta-metadata1" : "value1",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290788-6003-009e-3176-37b6d5000000",
+ "x-ms-request-id" : "ce25c998-3003-003e-1135-468657000000",
"x-ms-meta-metadata2" : "value2",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue2741227a&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue256856cc&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -49,17 +49,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d2907ab-6003-009e-4e76-37b6d5000000",
- "Body" : "queue2741227aqueue2741227a",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT",
+ "x-ms-request-id" : "ce25c9a2-3003-003e-1b35-468657000000",
+ "Body" : "queue256856ccqueue256856cc",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue2741227a/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue256856cc/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -67,15 +67,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d2907b9-6003-009e-5976-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25c9ac-3003-003e-2535-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue2741227a",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue256856cc",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -83,9 +83,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d2907c4-6003-009e-6276-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25c9bc-3003-003e-3435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
} ],
- "variables" : [ "queue2741227a" ]
+ "variables" : [ "queue256856cc" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/createTwiceDifferentMetadata.json b/storage/client/queue/src/test/resources/session-records/createTwiceDifferentMetadata.json
index 2c1103e32db9c..5314adf2afc28 100644
--- a/storage/client/queue/src/test/resources/session-records/createTwiceDifferentMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/createTwiceDifferentMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue0432116e",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue4220544c",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd226070-4003-0028-4675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT"
+ "x-ms-request-id" : "ce25c00f-3003-003e-2e35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue0432116e",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue4220544c",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -29,17 +29,17 @@
"retry-after" : "0",
"Content-Length" : "222",
"StatusCode" : "409",
- "x-ms-request-id" : "dd22608d-4003-0028-5f75-37b82d000000",
- "Body" : "QueueAlreadyExists
The specified queue already exists.\nRequestId:dd22608d-4003-0028-5f75-37b82d000000\nTime:2019-07-10T23:18:38.0176580Z",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25c01a-3003-003e-3835-468657000000",
+ "Body" : "QueueAlreadyExists
The specified queue already exists.\nRequestId:ce25c01a-3003-003e-3835-468657000000\nTime:2019-07-29T17:46:09.6721378Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue0432116e/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue4220544c/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -47,15 +47,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd22609f-4003-0028-7175-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT"
+ "x-ms-request-id" : "ce25c029-3003-003e-4735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue0432116e",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue4220544c",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -63,9 +63,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2260a4-4003-0028-7675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT"
+ "x-ms-request-id" : "ce25c03a-3003-003e-5735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT"
}
} ],
- "variables" : [ "queue0432116e" ]
+ "variables" : [ "queue4220544c" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/createTwiceSameMetadata.json b/storage/client/queue/src/test/resources/session-records/createTwiceSameMetadata.json
index 67e8f6692f9ce..8ceacb57975d9 100644
--- a/storage/client/queue/src/test/resources/session-records/createTwiceSameMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/createTwiceSameMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue1490420b",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue71040cdf",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd225ee9-4003-0028-6675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25be46-3003-003e-0235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue1490420b",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue71040cdf",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -28,15 +28,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd225f04-4003-0028-7875-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25be51-3003-003e-0c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue1490420b/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue71040cdf/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -44,15 +44,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd225f21-4003-0028-1175-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25be5d-3003-003e-1835-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue1490420b",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue71040cdf",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -60,9 +60,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd225f32-4003-0028-2175-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25be66-3003-003e-2135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
} ],
- "variables" : [ "queue1490420b" ]
+ "variables" : [ "queue71040cdf" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/createWithMetadata.json b/storage/client/queue/src/test/resources/session-records/createWithMetadata.json
index e81225ed944ad..d76e3ba505d47 100644
--- a/storage/client/queue/src/test/resources/session-records/createWithMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/createWithMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue98908a15",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue29411ad4",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2231c8-4003-0028-6375-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "x-ms-request-id" : "ce25980b-3003-003e-7b35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue98908a15?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue29411ad4?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -31,16 +31,16 @@
"x-ms-approximate-messages-count" : "0",
"x-ms-meta-metadata1" : "value1",
"StatusCode" : "200",
- "x-ms-request-id" : "dd2231df-4003-0028-7475-37b82d000000",
+ "x-ms-request-id" : "ce259819-3003-003e-0835-468657000000",
"x-ms-meta-metadata2" : "value2",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue98908a15/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue29411ad4/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -48,15 +48,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2231f6-4003-0028-0975-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "x-ms-request-id" : "ce259823-3003-003e-1235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue98908a15",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue29411ad4",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -64,9 +64,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd223209-4003-0028-1b75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "x-ms-request-id" : "ce259829-3003-003e-1835-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
} ],
- "variables" : [ "queue98908a15" ]
+ "variables" : [ "queue29411ad4" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/createWithSASToken.json b/storage/client/queue/src/test/resources/session-records/createWithSASToken.json
index b0f0da481c199..0b3ed3c3d1507 100644
--- a/storage/client/queue/src/test/resources/session-records/createWithSASToken.json
+++ b/storage/client/queue/src/test/resources/session-records/createWithSASToken.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue99626420/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue4255942a/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,11 +13,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd222843-4003-0028-5275-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd222843-4003-0028-5275-37b82d000000\nTime:2019-07-10T23:18:01.0102891Z",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT",
+ "x-ms-request-id" : "ce2592ff-3003-003e-3535-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce2592ff-3003-003e-3535-468657000000\nTime:2019-07-29T17:45:33.6579326Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue99626420" ]
+ "variables" : [ "queue4255942a" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/createWithSharedKey.json b/storage/client/queue/src/test/resources/session-records/createWithSharedKey.json
index 45ad59b25dadb..6a1231a38d8a8 100644
--- a/storage/client/queue/src/test/resources/session-records/createWithSharedKey.json
+++ b/storage/client/queue/src/test/resources/session-records/createWithSharedKey.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue46849fbc/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue67632721/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,11 +13,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd226200-4003-0028-1275-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd226200-4003-0028-1275-37b82d000000\nTime:2019-07-10T23:18:39.1594759Z",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT",
+ "x-ms-request-id" : "ce25c173-3003-003e-7835-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c173-3003-003e-7835-468657000000\nTime:2019-07-29T17:46:10.6480384Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue46849fbc" ]
+ "variables" : [ "queue67632721" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/deleteExisting.json b/storage/client/queue/src/test/resources/session-records/deleteExisting.json
index ffaa890d17294..d946444967902 100644
--- a/storage/client/queue/src/test/resources/session-records/deleteExisting.json
+++ b/storage/client/queue/src/test/resources/session-records/deleteExisting.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue69325b7f",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue79383b38",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd223362-4003-0028-4f75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "x-ms-request-id" : "ce2598a7-3003-003e-0c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:38 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue69325b7f/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue79383b38/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd223387-4003-0028-7075-37b82d000000",
- "Body" : "23c03c48-1eb9-48c9-aded-b6c6adb39e9eWed, 10 Jul 2019 23:18:06 GMTWed, 17 Jul 2019 23:18:06 GMTAgAAAAMAAAAAAAAA1NHmunU31QE=Wed, 10 Jul 2019 23:18:06 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT",
+ "x-ms-request-id" : "ce2598b1-3003-003e-1535-468657000000",
+ "Body" : "2818aeb8-163e-4cd7-b03f-f7f137c47ea4Mon, 29 Jul 2019 17:45:38 GMTMon, 05 Aug 2019 17:45:38 GMTAgAAAAMAAAAAAAAAK/m7bjVG1QE=Mon, 29 Jul 2019 17:45:38 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:38 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue69325b7f",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue79383b38",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -47,15 +47,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd223398-4003-0028-0175-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "x-ms-request-id" : "ce2598bf-3003-003e-2135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:38 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue69325b7f/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue79383b38/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -65,17 +65,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd225eb4-4003-0028-3c75-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd225eb4-4003-0028-3c75-37b82d000000\nTime:2019-07-10T23:18:36.4715552Z",
- "Date" : "Wed, 10 Jul 2019 23:18:35 GMT",
+ "x-ms-request-id" : "ce25be21-3003-003e-6335-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25be21-3003-003e-6335-468657000000\nTime:2019-07-29T17:46:08.3379083Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue69325b7f/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue79383b38/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -84,11 +84,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd225ecd-4003-0028-5175-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd225ecd-4003-0028-5175-37b82d000000\nTime:2019-07-10T23:18:36.5175891Z",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT",
+ "x-ms-request-id" : "ce25be2c-3003-003e-6a35-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25be2c-3003-003e-6a35-468657000000\nTime:2019-07-29T17:46:08.3759434Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue69325b7f" ]
+ "variables" : [ "queue79383b38" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/deleteExistingQueue.json b/storage/client/queue/src/test/resources/session-records/deleteExistingQueue.json
index 414ed34da046c..3eb36a56b393a 100644
--- a/storage/client/queue/src/test/resources/session-records/deleteExistingQueue.json
+++ b/storage/client/queue/src/test/resources/session-records/deleteExistingQueue.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue15727eac",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue166808a1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290577-6003-009e-6976-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:46 GMT"
+ "x-ms-request-id" : "ce25c8a9-3003-003e-3035-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue15727eac",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue166808a1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -28,15 +28,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d2905e7-6003-009e-4776-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:46 GMT"
+ "x-ms-request-id" : "ce25c8c2-3003-003e-4735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue15727eac/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue166808a1/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -46,17 +46,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "0d290618-6003-009e-7176-37b6d5000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:0d290618-6003-009e-7176-37b6d5000000\nTime:2019-07-10T23:24:47.1091308Z",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT",
+ "x-ms-request-id" : "ce25c8d0-3003-003e-5535-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c8d0-3003-003e-5535-468657000000\nTime:2019-07-29T17:46:16.5414695Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue15727eac&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue166808a1&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -65,11 +65,11 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290643-6003-009e-1b76-37b6d5000000",
- "Body" : "queue15727eac",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT",
+ "x-ms-request-id" : "ce25c8de-3003-003e-6335-468657000000",
+ "Body" : "queue166808a1",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue15727eac" ]
+ "variables" : [ "queue166808a1" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/deleteMessage.json b/storage/client/queue/src/test/resources/session-records/deleteMessage.json
index 4682bf4a1a131..59a83b0ca0437 100644
--- a/storage/client/queue/src/test/resources/session-records/deleteMessage.json
+++ b/storage/client/queue/src/test/resources/session-records/deleteMessage.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue1154048f",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue77328218",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd226162-4003-0028-1e75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c101-3003-003e-0e35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue1154048f/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue77328218/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd226172-4003-0028-2a75-37b82d000000",
- "Body" : "5d20d094-2ec7-4544-9ad1-86fc3aa14140Wed, 10 Jul 2019 23:18:38 GMTWed, 17 Jul 2019 23:18:38 GMTAgAAAAMAAAAAAAAAskA9znU31QE=Wed, 10 Jul 2019 23:18:38 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT",
+ "x-ms-request-id" : "ce25c111-3003-003e-1b35-468657000000",
+ "Body" : "c7d13fc4-18d2-4f8f-b426-1ddf42dd9567Mon, 29 Jul 2019 17:46:10 GMTMon, 05 Aug 2019 17:46:10 GMTAgAAAAMAAAAAAAAArk7ngTVG1QE=Mon, 29 Jul 2019 17:46:10 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue1154048f/messages?numofmessages=1&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue77328218/messages?numofmessages=1&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd226183-4003-0028-3675-37b82d000000",
- "Body" : "5d20d094-2ec7-4544-9ad1-86fc3aa14140Wed, 10 Jul 2019 23:18:38 GMTWed, 17 Jul 2019 23:18:38 GMTAgAAAAMAAAAAAAAAOIYm4HU31QE=Wed, 10 Jul 2019 23:19:08 GMT1test message",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT",
+ "x-ms-request-id" : "ce25c120-3003-003e-2935-468657000000",
+ "Body" : "c7d13fc4-18d2-4f8f-b426-1ddf42dd9567Mon, 29 Jul 2019 17:46:10 GMTMon, 05 Aug 2019 17:46:10 GMTAgAAAAMAAAAAAAAA4dTNkzVG1QE=Mon, 29 Jul 2019 17:46:40 GMT1test message",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue1154048f/messages/5d20d094-2ec7-4544-9ad1-86fc3aa14140?popreceipt=AgAAAAMAAAAAAAAAOIYm4HU31QE%3d",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue77328218/messages/c7d13fc4-18d2-4f8f-b426-1ddf42dd9567?popreceipt=AgAAAAMAAAAAAAAA4dTNkzVG1QE%3d",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -66,15 +66,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd226190-4003-0028-3f75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c12f-3003-003e-3735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue1154048f?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue77328218?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -84,15 +84,15 @@
"Content-Length" : "0",
"x-ms-approximate-messages-count" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd2261a5-4003-0028-4e75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c13a-3003-003e-4135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue1154048f/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue77328218/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -100,15 +100,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2261ba-4003-0028-5e75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c14e-3003-003e-5435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue1154048f",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue77328218",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -116,9 +116,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2261ce-4003-0028-6c75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c15b-3003-003e-6135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
} ],
- "variables" : [ "queue1154048f" ]
+ "variables" : [ "queue77328218" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/deleteMessageInvalidMessageId.json b/storage/client/queue/src/test/resources/session-records/deleteMessageInvalidMessageId.json
index 4eccb534a46f3..3ca8771afc935 100644
--- a/storage/client/queue/src/test/resources/session-records/deleteMessageInvalidMessageId.json
+++ b/storage/client/queue/src/test/resources/session-records/deleteMessageInvalidMessageId.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue96938aad",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue645683bc",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd221ea5-4003-0028-1075-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT"
+ "x-ms-request-id" : "ce258b73-3003-003e-3635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue96938aad/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue645683bc/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd221eb9-4003-0028-2375-37b82d000000",
- "Body" : "17aa480c-b8aa-47ce-9fdb-753a00853819Wed, 10 Jul 2019 23:17:54 GMTWed, 17 Jul 2019 23:17:54 GMTAgAAAAMAAAAAAAAALPXXs3U31QE=Wed, 10 Jul 2019 23:17:54 GMT",
- "Date" : "Wed, 10 Jul 2019 23:17:54 GMT",
+ "x-ms-request-id" : "ce258b7e-3003-003e-4035-468657000000",
+ "Body" : "61a491e1-56f0-496f-8693-d973dac2092eMon, 29 Jul 2019 17:45:27 GMTMon, 05 Aug 2019 17:45:27 GMTAgAAAAMAAAAAAAAAY7RmaDVG1QE=Mon, 29 Jul 2019 17:45:27 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue96938aad/messages?numofmessages=1&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue645683bc/messages?numofmessages=1&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd221ecb-4003-0028-3575-37b82d000000",
- "Body" : "17aa480c-b8aa-47ce-9fdb-753a00853819Wed, 10 Jul 2019 23:17:54 GMTWed, 17 Jul 2019 23:17:54 GMTAgAAAAMAAAAAAAAA4IjBxXU31QE=Wed, 10 Jul 2019 23:18:24 GMT1test message",
- "Date" : "Wed, 10 Jul 2019 23:17:54 GMT",
+ "x-ms-request-id" : "ce258b89-3003-003e-4b35-468657000000",
+ "Body" : "61a491e1-56f0-496f-8693-d973dac2092eMon, 29 Jul 2019 17:45:27 GMTMon, 05 Aug 2019 17:45:27 GMTAgAAAAMAAAAAAAAArGFNejVG1QE=Mon, 29 Jul 2019 17:45:57 GMT1test message",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue96938aad/messages/17aa480c-b8aa-47ce-9fdb-753a00853819random?popreceipt=AgAAAAMAAAAAAAAA4IjBxXU31QE%3d",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue645683bc/messages/61a491e1-56f0-496f-8693-d973dac2092erandom?popreceipt=AgAAAAMAAAAAAAAArGFNejVG1QE%3d",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -67,17 +67,17 @@
"retry-after" : "0",
"Content-Length" : "221",
"StatusCode" : "404",
- "x-ms-request-id" : "dd221ee5-4003-0028-4d75-37b82d000000",
- "Body" : "MessageNotFound
The specified message does not exist.\nRequestId:dd221ee5-4003-0028-4d75-37b82d000000\nTime:2019-07-10T23:17:54.6327585Z",
- "Date" : "Wed, 10 Jul 2019 23:17:54 GMT",
+ "x-ms-request-id" : "ce258b96-3003-003e-5835-468657000000",
+ "Body" : "MessageNotFound
The specified message does not exist.\nRequestId:ce258b96-3003-003e-5835-468657000000\nTime:2019-07-29T17:45:27.6744174Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue96938aad/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue645683bc/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -85,15 +85,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd221ef8-4003-0028-5f75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:54 GMT"
+ "x-ms-request-id" : "ce258b9e-3003-003e-6035-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue96938aad",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue645683bc",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -101,9 +101,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd221f17-4003-0028-7c75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:54 GMT"
+ "x-ms-request-id" : "ce258ba8-3003-003e-6935-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT"
}
} ],
- "variables" : [ "queue96938aad" ]
+ "variables" : [ "queue645683bc" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/deleteMessageInvalidPopReceipt.json b/storage/client/queue/src/test/resources/session-records/deleteMessageInvalidPopReceipt.json
index 01154b0b743de..f5b5cc132e1cb 100644
--- a/storage/client/queue/src/test/resources/session-records/deleteMessageInvalidPopReceipt.json
+++ b/storage/client/queue/src/test/resources/session-records/deleteMessageInvalidPopReceipt.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue67327535",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue21507eaa",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd221e11-4003-0028-0575-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT"
+ "x-ms-request-id" : "ce258b13-3003-003e-5d35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue67327535/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue21507eaa/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd221e1c-4003-0028-0f75-37b82d000000",
- "Body" : "a848cec9-d421-43a6-ac39-6a941d76d21bWed, 10 Jul 2019 23:17:54 GMTWed, 17 Jul 2019 23:17:54 GMTAgAAAAMAAAAAAAAAJDmgs3U31QE=Wed, 10 Jul 2019 23:17:54 GMT",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT",
+ "x-ms-request-id" : "ce258b25-3003-003e-6d35-468657000000",
+ "Body" : "39ffce2e-3427-4201-821a-bc18aa246e34Mon, 29 Jul 2019 17:45:27 GMTMon, 05 Aug 2019 17:45:27 GMTAgAAAAMAAAAAAAAAOb5BaDVG1QE=Mon, 29 Jul 2019 17:45:27 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue67327535/messages?numofmessages=1&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue21507eaa/messages?numofmessages=1&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd221e2b-4003-0028-1e75-37b82d000000",
- "Body" : "a848cec9-d421-43a6-ac39-6a941d76d21bWed, 10 Jul 2019 23:17:54 GMTWed, 17 Jul 2019 23:17:54 GMTAgAAAAMAAAAAAAAANWmKxXU31QE=Wed, 10 Jul 2019 23:18:24 GMT1test message",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT",
+ "x-ms-request-id" : "ce258b3d-3003-003e-0335-468657000000",
+ "Body" : "39ffce2e-3427-4201-821a-bc18aa246e34Mon, 29 Jul 2019 17:45:27 GMTMon, 05 Aug 2019 17:45:27 GMTAgAAAAMAAAAAAAAAivIpejVG1QE=Mon, 29 Jul 2019 17:45:57 GMT1test message",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue67327535/messages/a848cec9-d421-43a6-ac39-6a941d76d21b?popreceipt=AgAAAAMAAAAAAAAANWmKxXU31QE%3drandom",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue21507eaa/messages/39ffce2e-3427-4201-821a-bc18aa246e34?popreceipt=AgAAAAMAAAAAAAAAivIpejVG1QE%3drandom",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -67,17 +67,17 @@
"retry-after" : "0",
"Content-Length" : "444",
"StatusCode" : "400",
- "x-ms-request-id" : "dd221e4c-4003-0028-3c75-37b82d000000",
- "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:dd221e4c-4003-0028-3c75-37b82d000000\nTime:2019-07-10T23:17:54.2735030ZpopreceiptAgAAAAMAAAAAAAAANWmKxXU31QE=randomInvalid pop receipt format",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT",
+ "x-ms-request-id" : "ce258b4a-3003-003e-1035-468657000000",
+ "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:ce258b4a-3003-003e-1035-468657000000\nTime:2019-07-29T17:45:27.4462065ZpopreceiptAgAAAAMAAAAAAAAAivIpejVG1QE=randomInvalid pop receipt format",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue67327535/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue21507eaa/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -85,15 +85,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd221e6a-4003-0028-5575-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT"
+ "x-ms-request-id" : "ce258b52-3003-003e-1835-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue67327535",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue21507eaa",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -101,9 +101,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd221e7b-4003-0028-6675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT"
+ "x-ms-request-id" : "ce258b5e-3003-003e-2435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT"
}
} ],
- "variables" : [ "queue67327535" ]
+ "variables" : [ "queue21507eaa" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/deleteMessageQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/deleteMessageQueueDoesNotExist.json
index c03dedb5c4887..40ecbb8af74bb 100644
--- a/storage/client/queue/src/test/resources/session-records/deleteMessageQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/deleteMessageQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue055108e6/messages/invalid?popreceipt=call",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue120879ad/messages/invalid?popreceipt=call",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,17 +13,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd226381-4003-0028-5575-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd226381-4003-0028-5575-37b82d000000\nTime:2019-07-10T23:18:40.1101585Z",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT",
+ "x-ms-request-id" : "ce25c268-3003-003e-6135-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c268-3003-003e-6135-468657000000\nTime:2019-07-29T17:46:11.4487759Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue055108e6/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue120879ad/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd226390-4003-0028-6375-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd226390-4003-0028-6375-37b82d000000\nTime:2019-07-10T23:18:40.1591931Z",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT",
+ "x-ms-request-id" : "ce25c280-3003-003e-7435-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c280-3003-003e-7435-468657000000\nTime:2019-07-29T17:46:11.4848086Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue055108e6" ]
+ "variables" : [ "queue120879ad" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/deleteMetadata.json b/storage/client/queue/src/test/resources/session-records/deleteMetadata.json
index 8ba83a6d8d215..a281f24d73c02 100644
--- a/storage/client/queue/src/test/resources/session-records/deleteMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/deleteMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue679519e2",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue583315a1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2263ff-4003-0028-4975-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c2d7-3003-003e-4635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue679519e2?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue583315a1?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -31,16 +31,16 @@
"x-ms-approximate-messages-count" : "0",
"x-ms-meta-metadata1" : "value1",
"StatusCode" : "200",
- "x-ms-request-id" : "dd226409-4003-0028-5275-37b82d000000",
+ "x-ms-request-id" : "ce25c2eb-3003-003e-5635-468657000000",
"x-ms-meta-metadata2" : "value2",
- "Date" : "Wed, 10 Jul 2019 23:18:40 GMT"
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue679519e2?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue583315a1?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -48,15 +48,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd226418-4003-0028-6075-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:40 GMT"
+ "x-ms-request-id" : "ce25c2f9-3003-003e-6335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue679519e2?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue583315a1?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -66,15 +66,15 @@
"Content-Length" : "0",
"x-ms-approximate-messages-count" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd226420-4003-0028-6875-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:40 GMT"
+ "x-ms-request-id" : "ce25c306-3003-003e-6f35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue679519e2/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue583315a1/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -82,15 +82,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd226434-4003-0028-7b75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:40 GMT"
+ "x-ms-request-id" : "ce25c31a-3003-003e-0135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue679519e2",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue583315a1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -98,9 +98,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd22644c-4003-0028-1275-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:40 GMT"
+ "x-ms-request-id" : "ce25c32e-3003-003e-1435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
} ],
- "variables" : [ "queue679519e2" ]
+ "variables" : [ "queue583315a1" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/deleteNonExistent.json b/storage/client/queue/src/test/resources/session-records/deleteNonExistent.json
index 2fa6701c17acb..189bb90cfc551 100644
--- a/storage/client/queue/src/test/resources/session-records/deleteNonExistent.json
+++ b/storage/client/queue/src/test/resources/session-records/deleteNonExistent.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue04551c5d",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue87478c2e",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,17 +13,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd226108-4003-0028-4e75-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd226108-4003-0028-4e75-37b82d000000\nTime:2019-07-10T23:18:38.4209499Z",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25c0a6-3003-003e-3835-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c0a6-3003-003e-3835-468657000000\nTime:2019-07-29T17:46:10.0675028Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue04551c5d/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue87478c2e/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd226119-4003-0028-5e75-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd226119-4003-0028-5e75-37b82d000000\nTime:2019-07-10T23:18:38.4689812Z",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25c0b3-3003-003e-4435-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c0b3-3003-003e-4435-468657000000\nTime:2019-07-29T17:46:10.0975305Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue04551c5d" ]
+ "variables" : [ "queue87478c2e" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/deleteNonExistentQueue.json b/storage/client/queue/src/test/resources/session-records/deleteNonExistentQueue.json
index bf9105b3ccdc4..d7b76475f0956 100644
--- a/storage/client/queue/src/test/resources/session-records/deleteNonExistentQueue.json
+++ b/storage/client/queue/src/test/resources/session-records/deleteNonExistentQueue.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue82016a1d",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue56151922",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,17 +13,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "0d290bd9-6003-009e-4476-37b6d5000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:0d290bd9-6003-009e-4476-37b6d5000000\nTime:2019-07-10T23:24:50.9128531Z",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT",
+ "x-ms-request-id" : "ce25cbce-3003-003e-2535-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25cbce-3003-003e-2535-468657000000\nTime:2019-07-29T17:46:18.8245745Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue82016a1d&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue56151922&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -32,11 +32,11 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290bf6-6003-009e-5b76-37b6d5000000",
- "Body" : "queue82016a1d",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT",
+ "x-ms-request-id" : "ce25cbd8-3003-003e-2f35-468657000000",
+ "Body" : "queue56151922",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue82016a1d" ]
+ "variables" : [ "queue56151922" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/dequeueMessage.json b/storage/client/queue/src/test/resources/session-records/dequeueMessage.json
index 6473031c5a50f..6f8451d817f45 100644
--- a/storage/client/queue/src/test/resources/session-records/dequeueMessage.json
+++ b/storage/client/queue/src/test/resources/session-records/dequeueMessage.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue679346d1",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue19764ab9",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd221d34-4003-0028-3d75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:52 GMT"
+ "x-ms-request-id" : "ce258a8c-3003-003e-5f35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:26 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue679346d1/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue19764ab9/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd221d8c-4003-0028-0a75-37b82d000000",
- "Body" : "b6c999ca-9091-4109-b579-c4bca39d216dWed, 10 Jul 2019 23:17:53 GMTWed, 17 Jul 2019 23:17:53 GMTAgAAAAMAAAAAAAAA9bc/s3U31QE=Wed, 10 Jul 2019 23:17:53 GMT",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT",
+ "x-ms-request-id" : "ce258ab2-3003-003e-0435-468657000000",
+ "Body" : "c673187b-0f77-4bb1-aff0-87e42ae76726Mon, 29 Jul 2019 17:45:26 GMTMon, 05 Aug 2019 17:45:26 GMTAgAAAAMAAAAAAAAA1HcIaDVG1QE=Mon, 29 Jul 2019 17:45:26 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:26 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue679346d1/messages?numofmessages=1&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue19764ab9/messages?numofmessages=1&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd221da4-4003-0028-2275-37b82d000000",
- "Body" : "b6c999ca-9091-4109-b579-c4bca39d216dWed, 10 Jul 2019 23:17:53 GMTWed, 17 Jul 2019 23:17:53 GMTAgAAAAMAAAAAAAAA11EwxXU31QE=Wed, 10 Jul 2019 23:18:23 GMT1test message",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT",
+ "x-ms-request-id" : "ce258abc-3003-003e-0c35-468657000000",
+ "Body" : "c673187b-0f77-4bb1-aff0-87e42ae76726Mon, 29 Jul 2019 17:45:26 GMTMon, 05 Aug 2019 17:45:26 GMTAgAAAAMAAAAAAAAAS3PveTVG1QE=Mon, 29 Jul 2019 17:45:57 GMT1test message",
+ "Date" : "Mon, 29 Jul 2019 17:45:26 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue679346d1/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue19764ab9/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -66,15 +66,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd221da9-4003-0028-2775-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT"
+ "x-ms-request-id" : "ce258ac7-3003-003e-1735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:26 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue679346d1",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue19764ab9",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -82,9 +82,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd221db5-4003-0028-3275-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT"
+ "x-ms-request-id" : "ce258ae6-3003-003e-3335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:26 GMT"
}
} ],
- "variables" : [ "queue679346d1" ]
+ "variables" : [ "queue19764ab9" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/dequeueMultipleMessages.json b/storage/client/queue/src/test/resources/session-records/dequeueMultipleMessages.json
index 104a637b766db..4827a5ccb34e0 100644
--- a/storage/client/queue/src/test/resources/session-records/dequeueMultipleMessages.json
+++ b/storage/client/queue/src/test/resources/session-records/dequeueMultipleMessages.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue6570759e",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue7438027c",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd226228-4003-0028-2f75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c18b-3003-003e-0e35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue6570759e/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue7438027c/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd22623f-4003-0028-4475-37b82d000000",
- "Body" : "3d48ff69-e261-4bea-839c-ca0edfc2af4cWed, 10 Jul 2019 23:18:39 GMTWed, 17 Jul 2019 23:18:39 GMTAgAAAAMAAAAAAAAAYwGHznU31QE=Wed, 10 Jul 2019 23:18:39 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT",
+ "x-ms-request-id" : "ce25c19d-3003-003e-1e35-468657000000",
+ "Body" : "2a8100f7-45b8-46ef-a85a-5a48ddc35cf7Mon, 29 Jul 2019 17:46:10 GMTMon, 05 Aug 2019 17:46:10 GMTAgAAAAMAAAAAAAAARbwggjVG1QE=Mon, 29 Jul 2019 17:46:10 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue6570759e/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue7438027c/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -48,17 +48,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd226254-4003-0028-5375-37b82d000000",
- "Body" : "fd6a25b1-b3d3-4743-b5b3-072add1a4a86Wed, 10 Jul 2019 23:18:39 GMTWed, 17 Jul 2019 23:18:39 GMTAgAAAAMAAAAAAAAAz3yOznU31QE=Wed, 10 Jul 2019 23:18:39 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT",
+ "x-ms-request-id" : "ce25c1aa-3003-003e-2b35-468657000000",
+ "Body" : "7a8cf62e-362d-4d75-a3c8-91b4c3b8954bMon, 29 Jul 2019 17:46:10 GMTMon, 05 Aug 2019 17:46:10 GMTAgAAAAMAAAAAAAAAhyYngjVG1QE=Mon, 29 Jul 2019 17:46:10 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue6570759e/messages?numofmessages=2&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue7438027c/messages?numofmessages=2&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -67,17 +67,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd226269-4003-0028-6475-37b82d000000",
- "Body" : "3d48ff69-e261-4bea-839c-ca0edfc2af4cWed, 10 Jul 2019 23:18:39 GMTWed, 17 Jul 2019 23:18:39 GMTAgAAAAMAAAAAAAAAWsJ34HU31QE=Wed, 10 Jul 2019 23:19:09 GMT1test messagefd6a25b1-b3d3-4743-b5b3-072add1a4a86Wed, 10 Jul 2019 23:18:39 GMTWed, 17 Jul 2019 23:18:39 GMTAgAAAAMAAAAAAAAAWsJ34HU31QE=Wed, 10 Jul 2019 23:19:09 GMT1test message 2",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT",
+ "x-ms-request-id" : "ce25c1b7-3003-003e-3835-468657000000",
+ "Body" : "2a8100f7-45b8-46ef-a85a-5a48ddc35cf7Mon, 29 Jul 2019 17:46:10 GMTMon, 05 Aug 2019 17:46:10 GMTAgAAAAMAAAAAAAAArEESlDVG1QE=Mon, 29 Jul 2019 17:46:40 GMT1test message7a8cf62e-362d-4d75-a3c8-91b4c3b8954bMon, 29 Jul 2019 17:46:10 GMTMon, 05 Aug 2019 17:46:10 GMTAgAAAAMAAAAAAAAArEESlDVG1QE=Mon, 29 Jul 2019 17:46:40 GMT1test message 2",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue6570759e/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue7438027c/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -85,15 +85,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd226296-4003-0028-0975-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c1c2-3003-003e-4235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue6570759e",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue7438027c",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -101,9 +101,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2262a9-4003-0028-1975-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c1c9-3003-003e-4935-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
} ],
- "variables" : [ "queue6570759e" ]
+ "variables" : [ "queue7438027c" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/dequeueQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/dequeueQueueDoesNotExist.json
index 3bef9c37aaf6e..9b14ac66e4d11 100644
--- a/storage/client/queue/src/test/resources/session-records/dequeueQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/dequeueQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue39822dce/messages?numofmessages=1&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue946247b6/messages?numofmessages=1&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,17 +13,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd2260e6-4003-0028-3075-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd2260e6-4003-0028-3075-37b82d000000\nTime:2019-07-10T23:18:38.3148712Z",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25c085-3003-003e-1b35-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c085-3003-003e-1b35-468657000000\nTime:2019-07-29T17:46:09.9453898Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue39822dce/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue946247b6/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd2260f8-4003-0028-4175-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd2260f8-4003-0028-4175-37b82d000000\nTime:2019-07-10T23:18:38.3619056Z",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25c092-3003-003e-2635-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c092-3003-003e-2635-468657000000\nTime:2019-07-29T17:46:09.9824242Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue39822dce" ]
+ "variables" : [ "queue946247b6" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/dequeueTooManyMessages.json b/storage/client/queue/src/test/resources/session-records/dequeueTooManyMessages.json
index 757caa567efa5..fbf5fa5e62ea2 100644
--- a/storage/client/queue/src/test/resources/session-records/dequeueTooManyMessages.json
+++ b/storage/client/queue/src/test/resources/session-records/dequeueTooManyMessages.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue03015bde",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue68507ba0",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2226b1-4003-0028-0675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT"
+ "x-ms-request-id" : "ce259225-3003-003e-6e35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:32 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue03015bde/messages?numofmessages=64&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue68507ba0/messages?numofmessages=64&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -29,17 +29,17 @@
"retry-after" : "0",
"Content-Length" : "456",
"StatusCode" : "400",
- "x-ms-request-id" : "dd2226cd-4003-0028-1d75-37b82d000000",
- "Body" : "OutOfRangeQueryParameterValue
One of the query parameters specified in the request URI is outside the permissible range.\nRequestId:dd2226cd-4003-0028-1d75-37b82d000000\nTime:2019-07-10T23:18:00.2767678Znumofmessages64132",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT",
+ "x-ms-request-id" : "ce259237-3003-003e-7f35-468657000000",
+ "Body" : "OutOfRangeQueryParameterValue
One of the query parameters specified in the request URI is outside the permissible range.\nRequestId:ce259237-3003-003e-7f35-468657000000\nTime:2019-07-29T17:45:33.1895009Znumofmessages64132",
+ "Date" : "Mon, 29 Jul 2019 17:45:32 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue03015bde/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue68507ba0/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -47,15 +47,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2226e0-4003-0028-2e75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT"
+ "x-ms-request-id" : "ce259255-3003-003e-1935-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue03015bde",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue68507ba0",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -63,9 +63,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2226fd-4003-0028-4a75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT"
+ "x-ms-request-id" : "ce259266-3003-003e-2835-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
} ],
- "variables" : [ "queue03015bde" ]
+ "variables" : [ "queue68507ba0" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/enqueueEmptyMessage.json b/storage/client/queue/src/test/resources/session-records/enqueueEmptyMessage.json
index ed0aaef6517fc..52996b80567bb 100644
--- a/storage/client/queue/src/test/resources/session-records/enqueueEmptyMessage.json
+++ b/storage/client/queue/src/test/resources/session-records/enqueueEmptyMessage.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue76420ef8",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue97959da9",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2262ce-4003-0028-3475-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c1e3-3003-003e-6235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue76420ef8/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue97959da9/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2262e1-4003-0028-4275-37b82d000000",
- "Body" : "e1efc34f-03c7-4037-9597-6955381e8889Wed, 10 Jul 2019 23:18:39 GMTWed, 17 Jul 2019 23:18:39 GMTAgAAAAMAAAAAAAAAl6+7znU31QE=Wed, 10 Jul 2019 23:18:39 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT",
+ "x-ms-request-id" : "ce25c1f0-3003-003e-6d35-468657000000",
+ "Body" : "cddd73d8-4d2f-47e0-8dff-8ac3d6db9ab0Mon, 29 Jul 2019 17:46:11 GMTMon, 05 Aug 2019 17:46:11 GMTAgAAAAMAAAAAAAAAqaNNgjVG1QE=Mon, 29 Jul 2019 17:46:11 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue76420ef8/messages?peekonly=true",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue97959da9/messages?peekonly=true",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd2262ef-4003-0028-5075-37b82d000000",
- "Body" : "e1efc34f-03c7-4037-9597-6955381e8889Wed, 10 Jul 2019 23:18:39 GMTWed, 17 Jul 2019 23:18:39 GMT0",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT",
+ "x-ms-request-id" : "ce25c1f9-3003-003e-7635-468657000000",
+ "Body" : "cddd73d8-4d2f-47e0-8dff-8ac3d6db9ab0Mon, 29 Jul 2019 17:46:11 GMTMon, 05 Aug 2019 17:46:11 GMT0",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue76420ef8/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue97959da9/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -66,15 +66,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2262fe-4003-0028-5e75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c202-3003-003e-7f35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue76420ef8",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue97959da9",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -82,9 +82,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd22630f-4003-0028-6f75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c20c-3003-003e-0935-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
} ],
- "variables" : [ "queue76420ef8" ]
+ "variables" : [ "queue97959da9" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/enqueueMessage.json b/storage/client/queue/src/test/resources/session-records/enqueueMessage.json
index ff3e72aedaacf..92fe08d01c440 100644
--- a/storage/client/queue/src/test/resources/session-records/enqueueMessage.json
+++ b/storage/client/queue/src/test/resources/session-records/enqueueMessage.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue17032768",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue99166017",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd222a23-4003-0028-4b75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT"
+ "x-ms-request-id" : "ce2593eb-3003-003e-0a35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue17032768/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue99166017/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd222a4a-4003-0028-6c75-37b82d000000",
- "Body" : "7422f1b3-c1b1-4385-a945-6365e2e01caaWed, 10 Jul 2019 23:18:01 GMTWed, 17 Jul 2019 23:18:01 GMTAgAAAAMAAAAAAAAAQm1FuHU31QE=Wed, 10 Jul 2019 23:18:01 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT",
+ "x-ms-request-id" : "ce259404-3003-003e-2235-468657000000",
+ "Body" : "1351e7de-4a0c-4097-b7eb-85d118f4175eMon, 29 Jul 2019 17:45:34 GMTMon, 05 Aug 2019 17:45:34 GMTAgAAAAMAAAAAAAAA+Z98bDVG1QE=Mon, 29 Jul 2019 17:45:34 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue17032768/messages?peekonly=true",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue99166017/messages?peekonly=true",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd222a74-4003-0028-1275-37b82d000000",
- "Body" : "7422f1b3-c1b1-4385-a945-6365e2e01caaWed, 10 Jul 2019 23:18:01 GMTWed, 17 Jul 2019 23:18:01 GMT0test message",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT",
+ "x-ms-request-id" : "ce259419-3003-003e-3735-468657000000",
+ "Body" : "1351e7de-4a0c-4097-b7eb-85d118f4175eMon, 29 Jul 2019 17:45:34 GMTMon, 05 Aug 2019 17:45:34 GMT0test message",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue17032768/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue99166017/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -66,15 +66,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222aa3-4003-0028-3975-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT"
+ "x-ms-request-id" : "ce259428-3003-003e-4535-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue17032768",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue99166017",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -82,9 +82,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222ac4-4003-0028-5675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT"
+ "x-ms-request-id" : "ce259433-3003-003e-5035-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
} ],
- "variables" : [ "queue17032768" ]
+ "variables" : [ "queue99166017" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/enqueueQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/enqueueQueueDoesNotExist.json
index 9433eea40c38b..66bfad28fc08b 100644
--- a/storage/client/queue/src/test/resources/session-records/enqueueQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/enqueueQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue39910e47/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue6573410e/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -14,17 +14,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd2229a6-4003-0028-6475-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd2229a6-4003-0028-6475-37b82d000000\nTime:2019-07-10T23:18:01.6777634Z",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT",
+ "x-ms-request-id" : "ce2593a6-3003-003e-4b35-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce2593a6-3003-003e-4b35-468657000000\nTime:2019-07-29T17:45:34.1994319Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue39910e47/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue6573410e/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -33,11 +33,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd2229bd-4003-0028-7575-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd2229bd-4003-0028-7575-37b82d000000\nTime:2019-07-10T23:18:01.7277985Z",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT",
+ "x-ms-request-id" : "ce2593b1-3003-003e-5535-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce2593b1-3003-003e-5535-468657000000\nTime:2019-07-29T17:45:34.2344644Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue39910e47" ]
+ "variables" : [ "queue6573410e" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/enqueueShortTimeToLiveMessage.json b/storage/client/queue/src/test/resources/session-records/enqueueShortTimeToLiveMessage.json
index bb6b2172664f2..8ae1497cd0cab 100644
--- a/storage/client/queue/src/test/resources/session-records/enqueueShortTimeToLiveMessage.json
+++ b/storage/client/queue/src/test/resources/session-records/enqueueShortTimeToLiveMessage.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue69359315",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue39402b80",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd221f37-4003-0028-1c75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:54 GMT"
+ "x-ms-request-id" : "ce258bc1-3003-003e-8035-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue69359315/messages?visibilitytimeout=0&messagettl=2",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue39402b80/messages?visibilitytimeout=0&messagettl=2",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd221f43-4003-0028-2775-37b82d000000",
- "Body" : "c96e7db1-1d4a-4743-b165-a5835968722aWed, 10 Jul 2019 23:17:54 GMTWed, 10 Jul 2019 23:17:56 GMTAgAAAAMAAAAAAAAApcYOtHU31QE=Wed, 10 Jul 2019 23:17:54 GMT",
- "Date" : "Wed, 10 Jul 2019 23:17:54 GMT",
+ "x-ms-request-id" : "ce258bd3-3003-003e-1035-468657000000",
+ "Body" : "74c148db-3c56-467d-82b0-b5e38a040817Mon, 29 Jul 2019 17:45:27 GMTMon, 29 Jul 2019 17:45:29 GMTAgAAAAMAAAAAAAAAhaqLaDVG1QE=Mon, 29 Jul 2019 17:45:27 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue69359315/messages?peekonly=true",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue39402b80/messages?peekonly=true",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd222634-4003-0028-1675-37b82d000000",
+ "x-ms-request-id" : "ce2591c1-3003-003e-1335-468657000000",
"Body" : "",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:32 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue69359315/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue39402b80/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -66,15 +66,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd22264c-4003-0028-2c75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT"
+ "x-ms-request-id" : "ce2591cb-3003-003e-1d35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:32 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue69359315",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue39402b80",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -82,9 +82,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222666-4003-0028-4375-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT"
+ "x-ms-request-id" : "ce2591e4-3003-003e-3135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:32 GMT"
}
} ],
- "variables" : [ "queue69359315" ]
+ "variables" : [ "queue39402b80" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/getAccessPolicy.json b/storage/client/queue/src/test/resources/session-records/getAccessPolicy.json
index 79f9317b619d1..25c9198aae31b 100644
--- a/storage/client/queue/src/test/resources/session-records/getAccessPolicy.json
+++ b/storage/client/queue/src/test/resources/session-records/getAccessPolicy.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue276184e3",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue0884668e",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd222bac-4003-0028-2175-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:02 GMT"
+ "x-ms-request-id" : "ce25949b-3003-003e-3235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue276184e3?comp=acl",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue0884668e?comp=acl",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -29,17 +29,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd222bc0-4003-0028-3175-37b82d000000",
+ "x-ms-request-id" : "ce2594a8-3003-003e-3e35-468657000000",
"Body" : "",
- "Date" : "Wed, 10 Jul 2019 23:18:02 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue276184e3/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue0884668e/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -47,15 +47,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222be3-4003-0028-4d75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:02 GMT"
+ "x-ms-request-id" : "ce2594bb-3003-003e-5035-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue276184e3",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue0884668e",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -63,9 +63,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222bfe-4003-0028-6375-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:02 GMT"
+ "x-ms-request-id" : "ce2594ce-3003-003e-6135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
} ],
- "variables" : [ "queue276184e3" ]
+ "variables" : [ "queue0884668e" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/getAccessPolicyQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/getAccessPolicyQueueDoesNotExist.json
index 8c772f655188e..bfd405735f3ce 100644
--- a/storage/client/queue/src/test/resources/session-records/getAccessPolicyQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/getAccessPolicyQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue66823709?comp=acl",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue24675cb1?comp=acl",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,17 +13,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd22604d-4003-0028-2a75-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd22604d-4003-0028-2a75-37b82d000000\nTime:2019-07-10T23:18:37.8315254Z",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25bfea-3003-003e-0c35-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25bfea-3003-003e-0c35-468657000000\nTime:2019-07-29T17:46:09.5340109Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue66823709/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue24675cb1/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd226056-4003-0028-3275-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd226056-4003-0028-3275-37b82d000000\nTime:2019-07-10T23:18:37.8795608Z",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25bff3-3003-003e-1435-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25bff3-3003-003e-1435-468657000000\nTime:2019-07-29T17:46:09.5670416Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue66823709" ]
+ "variables" : [ "queue24675cb1" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/getProperties.json b/storage/client/queue/src/test/resources/session-records/getProperties.json
index a7c0a0ec5332d..adde745ae1f67 100644
--- a/storage/client/queue/src/test/resources/session-records/getProperties.json
+++ b/storage/client/queue/src/test/resources/session-records/getProperties.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue36601253",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue03538b48",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2227b8-4003-0028-6075-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT"
+ "x-ms-request-id" : "ce2592c8-3003-003e-0335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue36601253?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue03538b48?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -31,16 +31,16 @@
"x-ms-approximate-messages-count" : "0",
"x-ms-meta-metadata1" : "value1",
"StatusCode" : "200",
- "x-ms-request-id" : "dd2227d1-4003-0028-7675-37b82d000000",
+ "x-ms-request-id" : "ce2592d8-3003-003e-1035-468657000000",
"x-ms-meta-metadata2" : "value2",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT"
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue36601253/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue03538b48/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -48,15 +48,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2227f9-4003-0028-1775-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT"
+ "x-ms-request-id" : "ce2592e5-3003-003e-1b35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue36601253",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue03538b48",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -64,9 +64,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222807-4003-0028-2575-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT"
+ "x-ms-request-id" : "ce2592ef-3003-003e-2535-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
} ],
- "variables" : [ "queue36601253" ]
+ "variables" : [ "queue03538b48" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/getPropertiesQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/getPropertiesQueueDoesNotExist.json
index fe98b22946df5..a89d194ef3aeb 100644
--- a/storage/client/queue/src/test/resources/session-records/getPropertiesQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/getPropertiesQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue7527481d?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue76289bd6?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,17 +13,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd222681-4003-0028-5b75-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd222681-4003-0028-5b75-37b82d000000\nTime:2019-07-10T23:18:00.1126512Z",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT",
+ "x-ms-request-id" : "ce2591f6-3003-003e-4335-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce2591f6-3003-003e-4335-468657000000\nTime:2019-07-29T17:45:33.0563784Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:32 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue7527481d/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue76289bd6/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd22269d-4003-0028-7375-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd22269d-4003-0028-7375-37b82d000000\nTime:2019-07-10T23:18:00.1626872Z",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT",
+ "x-ms-request-id" : "ce259206-3003-003e-5135-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce259206-3003-003e-5135-468657000000\nTime:2019-07-29T17:45:33.0934128Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:32 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue7527481d" ]
+ "variables" : [ "queue76289bd6" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/getQueueDoesNotCreateAQueue.json b/storage/client/queue/src/test/resources/session-records/getQueueDoesNotCreateAQueue.json
index 7776d4fed4783..2d40e77689867 100644
--- a/storage/client/queue/src/test/resources/session-records/getQueueDoesNotCreateAQueue.json
+++ b/storage/client/queue/src/test/resources/session-records/getQueueDoesNotCreateAQueue.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue48695d7f/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue67216694/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -14,17 +14,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "0d290a18-6003-009e-3676-37b6d5000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:0d290a18-6003-009e-3676-37b6d5000000\nTime:2019-07-10T23:24:49.7390111Z",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT",
+ "x-ms-request-id" : "ce25cadc-3003-003e-4635-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25cadc-3003-003e-4635-468657000000\nTime:2019-07-29T17:46:18.0898964Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue48695d7f&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue67216694&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -33,11 +33,11 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290a2f-6003-009e-4876-37b6d5000000",
- "Body" : "queue48695d7f",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT",
+ "x-ms-request-id" : "ce25cae6-3003-003e-4f35-468657000000",
+ "Body" : "queue67216694",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue48695d7f" ]
+ "variables" : [ "queue67216694" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/listQueues.json b/storage/client/queue/src/test/resources/session-records/listQueues.json
index 361f47abd400a..04be57eafc73f 100644
--- a/storage/client/queue/src/test/resources/session-records/listQueues.json
+++ b/storage/client/queue/src/test/resources/session-records/listQueues.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue455724b60",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue384632e40",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d2907f4-6003-009e-0976-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25c9cf-3003-003e-4535-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue455724b61",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue384632e41",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -28,15 +28,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290805-6003-009e-1376-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25c9e1-3003-003e-5535-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue455724b62",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue384632e42",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -44,15 +44,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d29080b-6003-009e-1876-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25c9f2-3003-003e-6435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue455724b6&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue384632e4&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -61,17 +61,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290816-6003-009e-2276-37b6d5000000",
- "Body" : "queue455724b6queue455724b60queue455724b61queue455724b62",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT",
+ "x-ms-request-id" : "ce25ca0a-3003-003e-7835-468657000000",
+ "Body" : "queue384632e4queue384632e40queue384632e41queue384632e42",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue455724b6&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue384632e4&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -80,17 +80,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d29083e-6003-009e-4676-37b6d5000000",
- "Body" : "queue455724b6queue455724b60queue455724b61queue455724b62",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT",
+ "x-ms-request-id" : "ce25ca13-3003-003e-8035-468657000000",
+ "Body" : "queue384632e4queue384632e40queue384632e41queue384632e42",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue455724b60/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue384632e40/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -98,15 +98,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290871-6003-009e-6e76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25ca1d-3003-003e-0a35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue455724b60",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue384632e40",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -114,15 +114,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290896-6003-009e-0676-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25ca24-3003-003e-1135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue455724b61/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue384632e41/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -130,15 +130,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d2908bc-6003-009e-2476-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25ca35-3003-003e-2235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue455724b61",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue384632e41",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -146,15 +146,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d2908df-6003-009e-3e76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT"
+ "x-ms-request-id" : "ce25ca3f-3003-003e-2c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue455724b62/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue384632e42/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -162,15 +162,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d2908fd-6003-009e-5676-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT"
+ "x-ms-request-id" : "ce25ca4b-3003-003e-3835-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue455724b62",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue384632e42",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -178,9 +178,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d29091f-6003-009e-6a76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:49 GMT"
+ "x-ms-request-id" : "ce25ca55-3003-003e-4235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:17 GMT"
}
} ],
- "variables" : [ "queue455724b6" ]
+ "variables" : [ "queue384632e4" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/listQueuesIncludeMetadata.json b/storage/client/queue/src/test/resources/session-records/listQueuesIncludeMetadata.json
index a0e836cf26701..b15e1b1f5bd3a 100644
--- a/storage/client/queue/src/test/resources/session-records/listQueuesIncludeMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/listQueuesIncludeMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue58738ae80",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue863517a70",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290c20-6003-009e-7b76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT"
+ "x-ms-request-id" : "ce25cbf0-3003-003e-4635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue58738ae81",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue863517a71",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -28,15 +28,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290c34-6003-009e-0a76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT"
+ "x-ms-request-id" : "ce25cc02-3003-003e-5635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue58738ae82",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue863517a72",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -44,15 +44,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290c4e-6003-009e-1f76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT"
+ "x-ms-request-id" : "ce25cc13-3003-003e-6435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue58738ae8&include=metadata&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue863517a7&include=metadata&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -61,17 +61,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290c6b-6003-009e-3376-37b6d5000000",
- "Body" : "queue58738ae8queue58738ae80value1value2queue58738ae81queue58738ae82value1value2",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT",
+ "x-ms-request-id" : "ce25cc26-3003-003e-7535-468657000000",
+ "Body" : "queue863517a7queue863517a70value1value2queue863517a71queue863517a72value1value2",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue58738ae8&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue863517a7&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -80,17 +80,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290c8e-6003-009e-5176-37b6d5000000",
- "Body" : "queue58738ae8queue58738ae80queue58738ae81queue58738ae82",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT",
+ "x-ms-request-id" : "ce25cc37-3003-003e-0235-468657000000",
+ "Body" : "queue863517a7queue863517a70queue863517a71queue863517a72",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue58738ae80/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue863517a70/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -98,15 +98,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290caa-6003-009e-6876-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT"
+ "x-ms-request-id" : "ce25cc41-3003-003e-0b35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue58738ae80",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue863517a70",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -114,15 +114,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290cc1-6003-009e-7a76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT"
+ "x-ms-request-id" : "ce25cc50-3003-003e-1935-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue58738ae81/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue863517a71/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -130,15 +130,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290cde-6003-009e-1176-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT"
+ "x-ms-request-id" : "ce25cc60-3003-003e-2735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue58738ae81",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue863517a71",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -146,15 +146,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290cf2-6003-009e-2376-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT"
+ "x-ms-request-id" : "ce25cc69-3003-003e-3035-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue58738ae82/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue863517a72/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -162,15 +162,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290d14-6003-009e-4076-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT"
+ "x-ms-request-id" : "ce25cc7e-3003-003e-4335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:19 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue58738ae82",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue863517a72",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -178,9 +178,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290d2b-6003-009e-5476-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:51 GMT"
+ "x-ms-request-id" : "ce25cc91-3003-003e-5335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:19 GMT"
}
} ],
- "variables" : [ "queue58738ae8" ]
+ "variables" : [ "queue863517a7" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/listQueuesWithPrefix.json b/storage/client/queue/src/test/resources/session-records/listQueuesWithPrefix.json
index ff107058e29fc..fc14d19ee423e 100644
--- a/storage/client/queue/src/test/resources/session-records/listQueuesWithPrefix.json
+++ b/storage/client/queue/src/test/resources/session-records/listQueuesWithPrefix.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue423382efprefix0",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue856294efprefix0",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290acd-6003-009e-5476-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cb2e-3003-003e-1135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue423382ef1",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue856294ef1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -28,15 +28,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290ae3-6003-009e-6876-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cb3f-3003-003e-2135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue423382efprefix2",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue856294efprefix2",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -44,15 +44,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "0d290afd-6003-009e-8076-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cb53-3003-003e-3135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue423382efprefix&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue856294efprefix&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -61,17 +61,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290b0d-6003-009e-0f76-37b6d5000000",
- "Body" : "queue423382efprefixqueue423382efprefix0queue423382efprefix2",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT",
+ "x-ms-request-id" : "ce25cb5c-3003-003e-3935-468657000000",
+ "Body" : "queue856294efprefixqueue856294efprefix0queue856294efprefix2",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue423382ef&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue856294ef&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -80,17 +80,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290b16-6003-009e-1776-37b6d5000000",
- "Body" : "queue423382efqueue423382ef1queue423382efprefix0queue423382efprefix2",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT",
+ "x-ms-request-id" : "ce25cb6d-3003-003e-4935-468657000000",
+ "Body" : "queue856294efqueue856294ef1queue856294efprefix0queue856294efprefix2",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue423382ef1/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue856294ef1/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -98,15 +98,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290b38-6003-009e-3576-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cb83-3003-003e-5c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue423382ef1",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue856294ef1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -114,15 +114,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290b4c-6003-009e-4776-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cb89-3003-003e-6235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue423382efprefix0/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue856294efprefix0/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -130,15 +130,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290b60-6003-009e-5976-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cb92-3003-003e-6b35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue423382efprefix0",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue856294efprefix0",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -146,15 +146,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290b71-6003-009e-6676-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cb9b-3003-003e-7435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue423382efprefix2/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue856294efprefix2/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -162,15 +162,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290b81-6003-009e-7576-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cbab-3003-003e-0335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue423382efprefix2",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue856294efprefix2",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -178,9 +178,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "0d290b9a-6003-009e-0b76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:50 GMT"
+ "x-ms-request-id" : "ce25cbb6-3003-003e-0e35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:18 GMT"
}
} ],
- "variables" : [ "queue423382ef" ]
+ "variables" : [ "queue856294ef" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/peekMessage.json b/storage/client/queue/src/test/resources/session-records/peekMessage.json
index 540c460785a11..b8fcce8dfb13f 100644
--- a/storage/client/queue/src/test/resources/session-records/peekMessage.json
+++ b/storage/client/queue/src/test/resources/session-records/peekMessage.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue54577e60",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1280381e",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd225fa8-4003-0028-0d75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25bf02-3003-003e-3535-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue54577e60/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1280381e/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd225fb8-4003-0028-1c75-37b82d000000",
- "Body" : "53096a37-63bf-45d9-9172-4c8713ff282eWed, 10 Jul 2019 23:18:37 GMTWed, 17 Jul 2019 23:18:37 GMTAgAAAAMAAAAAAAAATsJgzXU31QE=Wed, 10 Jul 2019 23:18:37 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT",
+ "x-ms-request-id" : "ce25bf19-3003-003e-4935-468657000000",
+ "Body" : "727acc51-9474-4964-82d7-1afced183260Mon, 29 Jul 2019 17:46:09 GMTMon, 05 Aug 2019 17:46:09 GMTAgAAAAMAAAAAAAAAlC8agTVG1QE=Mon, 29 Jul 2019 17:46:09 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue54577e60/messages?peekonly=true",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1280381e/messages?peekonly=true",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd225fd2-4003-0028-3375-37b82d000000",
- "Body" : "53096a37-63bf-45d9-9172-4c8713ff282eWed, 10 Jul 2019 23:18:37 GMTWed, 17 Jul 2019 23:18:37 GMT0test message",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT",
+ "x-ms-request-id" : "ce25bf2e-3003-003e-5c35-468657000000",
+ "Body" : "727acc51-9474-4964-82d7-1afced183260Mon, 29 Jul 2019 17:46:09 GMTMon, 05 Aug 2019 17:46:09 GMT0test message",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue54577e60/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1280381e/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -66,15 +66,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd225fe6-4003-0028-4775-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25bf38-3003-003e-6635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue54577e60",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1280381e",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -82,9 +82,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd225ff7-4003-0028-5875-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT"
+ "x-ms-request-id" : "ce25bf44-3003-003e-7135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
} ],
- "variables" : [ "queue54577e60" ]
+ "variables" : [ "queue1280381e" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/peekMultipleMessages.json b/storage/client/queue/src/test/resources/session-records/peekMultipleMessages.json
index 5ea0a89b15f98..997baf7ff5f6d 100644
--- a/storage/client/queue/src/test/resources/session-records/peekMultipleMessages.json
+++ b/storage/client/queue/src/test/resources/session-records/peekMultipleMessages.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue17925938",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue42581f31",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd222afc-4003-0028-0875-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT"
+ "x-ms-request-id" : "ce259453-3003-003e-7035-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue17925938/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue42581f31/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd222b1e-4003-0028-2375-37b82d000000",
- "Body" : "86c3b192-2c4f-4bd4-89bf-07553c141ac0Wed, 10 Jul 2019 23:18:02 GMTWed, 17 Jul 2019 23:18:02 GMTAgAAAAMAAAAAAAAAI8dyuHU31QE=Wed, 10 Jul 2019 23:18:02 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT",
+ "x-ms-request-id" : "ce25945b-3003-003e-7735-468657000000",
+ "Body" : "91e7c989-7d11-463f-b173-f869f7af0de4Mon, 29 Jul 2019 17:45:34 GMTMon, 05 Aug 2019 17:45:34 GMTAgAAAAMAAAAAAAAA3qeibDVG1QE=Mon, 29 Jul 2019 17:45:34 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue17925938/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue42581f31/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -48,17 +48,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd222b4a-4003-0028-4775-37b82d000000",
- "Body" : "1b2d50b7-3540-4dd4-a480-8549b5207fe7Wed, 10 Jul 2019 23:18:02 GMTWed, 17 Jul 2019 23:18:02 GMTAgAAAAMAAAAAAAAAqWl6uHU31QE=Wed, 10 Jul 2019 23:18:02 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT",
+ "x-ms-request-id" : "ce259464-3003-003e-7f35-468657000000",
+ "Body" : "8bb5b1c6-2796-4ed7-aa05-145dc5fd2b86Mon, 29 Jul 2019 17:45:34 GMTMon, 05 Aug 2019 17:45:34 GMTAgAAAAMAAAAAAAAAHTmpbDVG1QE=Mon, 29 Jul 2019 17:45:34 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue17925938/messages?numofmessages=2&peekonly=true",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue42581f31/messages?numofmessages=2&peekonly=true",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -67,17 +67,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd222b67-4003-0028-6175-37b82d000000",
- "Body" : "86c3b192-2c4f-4bd4-89bf-07553c141ac0Wed, 10 Jul 2019 23:18:02 GMTWed, 17 Jul 2019 23:18:02 GMT0test message1b2d50b7-3540-4dd4-a480-8549b5207fe7Wed, 10 Jul 2019 23:18:02 GMTWed, 17 Jul 2019 23:18:02 GMT0test message 2",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT",
+ "x-ms-request-id" : "ce25946a-3003-003e-0535-468657000000",
+ "Body" : "91e7c989-7d11-463f-b173-f869f7af0de4Mon, 29 Jul 2019 17:45:34 GMTMon, 05 Aug 2019 17:45:34 GMT0test message8bb5b1c6-2796-4ed7-aa05-145dc5fd2b86Mon, 29 Jul 2019 17:45:34 GMTMon, 05 Aug 2019 17:45:34 GMT0test message 2",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue17925938/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue42581f31/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -85,15 +85,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222b7e-4003-0028-7675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT"
+ "x-ms-request-id" : "ce259476-3003-003e-1035-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue17925938",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue42581f31",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -101,9 +101,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222b8e-4003-0028-0675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT"
+ "x-ms-request-id" : "ce259488-3003-003e-1f35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
} ],
- "variables" : [ "queue17925938" ]
+ "variables" : [ "queue42581f31" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/peekQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/peekQueueDoesNotExist.json
index c9de737c16179..61463e3a0bceb 100644
--- a/storage/client/queue/src/test/resources/session-records/peekQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/peekQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue5442745c/messages?peekonly=true",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue3821725e/messages?peekonly=true",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,17 +13,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd221dd8-4003-0028-5075-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd221dd8-4003-0028-5075-37b82d000000\nTime:2019-07-10T23:17:53.9252561Z",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT",
+ "x-ms-request-id" : "ce258afc-3003-003e-4835-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce258afc-3003-003e-4835-468657000000\nTime:2019-07-29T17:45:27.2239998Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue5442745c/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue3821725e/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd221df7-4003-0028-6d75-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd221df7-4003-0028-6d75-37b82d000000\nTime:2019-07-10T23:17:54.0093158Z",
- "Date" : "Wed, 10 Jul 2019 23:17:53 GMT",
+ "x-ms-request-id" : "ce258b05-3003-003e-5035-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce258b05-3003-003e-5035-468657000000\nTime:2019-07-29T17:45:27.2580305Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:27 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue5442745c" ]
+ "variables" : [ "queue3821725e" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/peekTooManyMessages.json b/storage/client/queue/src/test/resources/session-records/peekTooManyMessages.json
index f653e97e1e0ce..816678f755d2b 100644
--- a/storage/client/queue/src/test/resources/session-records/peekTooManyMessages.json
+++ b/storage/client/queue/src/test/resources/session-records/peekTooManyMessages.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue80227035",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue59213917",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd22612f-4003-0028-7275-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c0cd-3003-003e-5c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue80227035/messages?numofmessages=64&peekonly=true",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue59213917/messages?numofmessages=64&peekonly=true",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -29,17 +29,17 @@
"retry-after" : "0",
"Content-Length" : "456",
"StatusCode" : "400",
- "x-ms-request-id" : "dd226138-4003-0028-7a75-37b82d000000",
- "Body" : "OutOfRangeQueryParameterValue
One of the query parameters specified in the request URI is outside the permissible range.\nRequestId:dd226138-4003-0028-7a75-37b82d000000\nTime:2019-07-10T23:18:38.5780592Znumofmessages64132",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT",
+ "x-ms-request-id" : "ce25c0d9-3003-003e-6735-468657000000",
+ "Body" : "OutOfRangeQueryParameterValue
One of the query parameters specified in the request URI is outside the permissible range.\nRequestId:ce25c0d9-3003-003e-6735-468657000000\nTime:2019-07-29T17:46:10.2256481Znumofmessages64132",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue80227035/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue59213917/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -47,15 +47,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd22613d-4003-0028-7f75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c0e4-3003-003e-7235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue80227035",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue59213917",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -63,9 +63,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd226149-4003-0028-0975-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:38 GMT"
+ "x-ms-request-id" : "ce25c0ee-3003-003e-7c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:10 GMT"
}
} ],
- "variables" : [ "queue80227035" ]
+ "variables" : [ "queue59213917" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/setAccessPolicy.json b/storage/client/queue/src/test/resources/session-records/setAccessPolicy.json
index ac6e9881a669f..1e8efc16308c7 100644
--- a/storage/client/queue/src/test/resources/session-records/setAccessPolicy.json
+++ b/storage/client/queue/src/test/resources/session-records/setAccessPolicy.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue656812ca",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue776870cb",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd225f53-4003-0028-4075-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25be78-3003-003e-3335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue656812ca?comp=acl",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue776870cb?comp=acl",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,15 +29,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd225f6a-4003-0028-5575-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25be93-3003-003e-4c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue656812ca?comp=acl",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue776870cb?comp=acl",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -46,17 +46,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd225f7e-4003-0028-6675-37b82d000000",
+ "x-ms-request-id" : "ce25bea1-3003-003e-5a35-468657000000",
"Body" : "testpermission2000-01-01T00:00:00.0000000Z2020-01-01T00:00:00.0000000Zraup",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue656812ca/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue776870cb/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -64,15 +64,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd225f8c-4003-0028-7475-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25beaf-3003-003e-6835-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue656812ca",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue776870cb",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -80,9 +80,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd225f98-4003-0028-7e75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:36 GMT"
+ "x-ms-request-id" : "ce25bec6-3003-003e-7c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:08 GMT"
}
} ],
- "variables" : [ "queue656812ca" ]
+ "variables" : [ "queue776870cb" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/setAccessPolicyQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/setAccessPolicyQueueDoesNotExist.json
index b2b42bce18c37..c279867bb7547 100644
--- a/storage/client/queue/src/test/resources/session-records/setAccessPolicyQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/setAccessPolicyQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue01052e33?comp=acl",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue62705f0a?comp=acl",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -14,17 +14,17 @@
"retry-after" : "0",
"Content-Length" : "294",
"StatusCode" : "400",
- "x-ms-request-id" : "dd22645d-4003-0028-2375-37b82d000000",
- "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:dd22645d-4003-0028-2375-37b82d000000\nTime:2019-07-10T23:18:40.8086534Z00",
- "Date" : "Wed, 10 Jul 2019 23:18:40 GMT",
+ "x-ms-request-id" : "ce25c33d-3003-003e-2335-468657000000",
+ "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:ce25c33d-3003-003e-2335-468657000000\nTime:2019-07-29T17:46:12.0213031Z00",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue01052e33/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue62705f0a/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -33,11 +33,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd22646a-4003-0028-2f75-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd22646a-4003-0028-2f75-37b82d000000\nTime:2019-07-10T23:18:40.8566884Z",
- "Date" : "Wed, 10 Jul 2019 23:18:40 GMT",
+ "x-ms-request-id" : "ce25c348-3003-003e-2e35-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c348-3003-003e-2e35-468657000000\nTime:2019-07-29T17:46:12.0653446Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue01052e33" ]
+ "variables" : [ "queue62705f0a" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/setInvalidAccessPolicy.json b/storage/client/queue/src/test/resources/session-records/setInvalidAccessPolicy.json
index fe186f2b4ac1c..5f4e7ad6d34a6 100644
--- a/storage/client/queue/src/test/resources/session-records/setInvalidAccessPolicy.json
+++ b/storage/client/queue/src/test/resources/session-records/setInvalidAccessPolicy.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue424460ef",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue10028afb",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd226338-4003-0028-1475-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c227-3003-003e-2335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue424460ef?comp=acl",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue10028afb?comp=acl",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -30,17 +30,17 @@
"retry-after" : "0",
"Content-Length" : "371",
"StatusCode" : "400",
- "x-ms-request-id" : "dd22634c-4003-0028-2575-37b82d000000",
- "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:dd22634c-4003-0028-2575-37b82d000000\nTime:2019-07-10T23:18:39.9250246Z1304Signed identifier ID cannot be empty or over 64 characters in length",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT",
+ "x-ms-request-id" : "ce25c233-3003-003e-2e35-468657000000",
+ "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:ce25c233-3003-003e-2e35-468657000000\nTime:2019-07-29T17:46:11.2956350Z1304Signed identifier ID cannot be empty or over 64 characters in length",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue424460ef/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue10028afb/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -48,15 +48,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd22635d-4003-0028-3675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c241-3003-003e-3b35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue424460ef",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue10028afb",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -64,9 +64,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd226363-4003-0028-3a75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c24c-3003-003e-4635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
} ],
- "variables" : [ "queue424460ef" ]
+ "variables" : [ "queue10028afb" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/setInvalidMetadata.json b/storage/client/queue/src/test/resources/session-records/setInvalidMetadata.json
index eb9faafed36f9..9d7d08447505c 100644
--- a/storage/client/queue/src/test/resources/session-records/setInvalidMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/setInvalidMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue38693e14",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue527846d2",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd22272a-4003-0028-7175-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:17:59 GMT"
+ "x-ms-request-id" : "ce259283-3003-003e-4235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue38693e14?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue527846d2?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -29,17 +29,17 @@
"retry-after" : "0",
"Content-Length" : "285",
"StatusCode" : "400",
- "x-ms-request-id" : "dd22274f-4003-0028-0b75-37b82d000000",
- "Body" : "EmptyMetadataKey
The key for one of the metadata key-value pairs is empty.\nRequestId:dd22274f-4003-0028-0b75-37b82d000000\nTime:2019-07-10T23:18:00.5359517Zbad metadata",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT",
+ "x-ms-request-id" : "ce25928f-3003-003e-4d35-468657000000",
+ "Body" : "EmptyMetadataKey
The key for one of the metadata key-value pairs is empty.\nRequestId:ce25928f-3003-003e-4d35-468657000000\nTime:2019-07-29T17:45:33.3696674Zbad metadata",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue38693e14/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue527846d2/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -47,15 +47,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222779-4003-0028-2875-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT"
+ "x-ms-request-id" : "ce2592a2-3003-003e-5e35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue38693e14",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue527846d2",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -63,9 +63,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222798-4003-0028-4375-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:00 GMT"
+ "x-ms-request-id" : "ce2592ae-3003-003e-6a35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:33 GMT"
}
} ],
- "variables" : [ "queue38693e14" ]
+ "variables" : [ "queue527846d2" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/setMetadata.json b/storage/client/queue/src/test/resources/session-records/setMetadata.json
index 5d60ce89a352d..ddb5174d6fe88 100644
--- a/storage/client/queue/src/test/resources/session-records/setMetadata.json
+++ b/storage/client/queue/src/test/resources/session-records/setMetadata.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue625780b6",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1611544a",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd2263a4-4003-0028-7675-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c298-3003-003e-0b35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue625780b6?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1611544a?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -28,15 +28,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2263c0-4003-0028-0f75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c2a6-3003-003e-1735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue625780b6?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1611544a?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -47,16 +47,16 @@
"x-ms-approximate-messages-count" : "0",
"x-ms-meta-metadata1" : "value1",
"StatusCode" : "200",
- "x-ms-request-id" : "dd2263d2-4003-0028-2075-37b82d000000",
+ "x-ms-request-id" : "ce25c2ac-3003-003e-1d35-468657000000",
"x-ms-meta-metadata2" : "value2",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue625780b6/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1611544a/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -64,15 +64,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2263dd-4003-0028-2a75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c2b3-3003-003e-2435-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue625780b6",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue1611544a",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -80,9 +80,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2263ea-4003-0028-3775-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:39 GMT"
+ "x-ms-request-id" : "ce25c2bd-3003-003e-2e35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:11 GMT"
}
} ],
- "variables" : [ "queue625780b6" ]
+ "variables" : [ "queue1611544a" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/setMetadataQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/setMetadataQueueDoesNotExist.json
index 4d7536d402ced..404b3d6c68586 100644
--- a/storage/client/queue/src/test/resources/session-records/setMetadataQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/setMetadataQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue570099c0?comp=metadata",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue800463e7?comp=metadata",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -13,17 +13,17 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd2260d2-4003-0028-2175-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd2260d2-4003-0028-2175-37b82d000000\nTime:2019-07-10T23:18:38.2057923Z",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25c055-3003-003e-7235-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c055-3003-003e-7235-468657000000\nTime:2019-07-29T17:46:09.8422950Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue570099c0/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue800463e7/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -32,11 +32,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd2260d9-4003-0028-2775-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd2260d9-4003-0028-2775-37b82d000000\nTime:2019-07-10T23:18:38.2538267Z",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25c069-3003-003e-0235-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce25c069-3003-003e-0235-468657000000\nTime:2019-07-29T17:46:09.8753253Z",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue570099c0" ]
+ "variables" : [ "queue800463e7" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/setProperties.json b/storage/client/queue/src/test/resources/session-records/setProperties.json
index 3c832f439b708..25d3522208694 100644
--- a/storage/client/queue/src/test/resources/session-records/setProperties.json
+++ b/storage/client/queue/src/test/resources/session-records/setProperties.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -13,17 +13,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d2906b5-6003-009e-0476-37b6d5000000",
+ "x-ms-request-id" : "ce25c937-3003-003e-3635-468657000000",
"Body" : "1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -32,15 +32,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "0d2906d0-6003-009e-1a76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT"
+ "x-ms-request-id" : "ce25c948-3003-003e-4735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -49,17 +49,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290712-6003-009e-4e76-37b6d5000000",
+ "x-ms-request-id" : "ce25c952-3003-003e-5035-468657000000",
"Body" : "1.0falsetruetruetrue31.0truefalsetrue31.0truefalsetrue3",
- "Date" : "Wed, 10 Jul 2019 23:24:47 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -68,15 +68,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "202",
- "x-ms-request-id" : "0d290721-6003-009e-5b76-37b6d5000000",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT"
+ "x-ms-request-id" : "ce25c95e-3003-003e-5c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?restype=service&comp=properties",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?restype=service&comp=properties",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -85,17 +85,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d290739-6003-009e-7076-37b6d5000000",
+ "x-ms-request-id" : "ce25c969-3003-003e-6735-468657000000",
"Body" : "1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net?prefix=queue49487893&include=&comp=list",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net?prefix=queue53549f94&include=&comp=list",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -104,11 +104,11 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "0d29074d-6003-009e-0176-37b6d5000000",
- "Body" : "queue49487893",
- "Date" : "Wed, 10 Jul 2019 23:24:48 GMT",
+ "x-ms-request-id" : "ce25c97a-3003-003e-7735-468657000000",
+ "Body" : "queue53549f94",
+ "Date" : "Mon, 29 Jul 2019 17:46:16 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue49487893" ]
+ "variables" : [ "queue53549f94" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/setTooManyAccessPolicies.json b/storage/client/queue/src/test/resources/session-records/setTooManyAccessPolicies.json
index adee338b14141..f341a151b3158 100644
--- a/storage/client/queue/src/test/resources/session-records/setTooManyAccessPolicies.json
+++ b/storage/client/queue/src/test/resources/session-records/setTooManyAccessPolicies.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue265747a2",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue0184403a",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd22600f-4003-0028-7075-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT"
+ "x-ms-request-id" : "ce25bf67-3003-003e-1235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue265747a2?comp=acl",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue0184403a?comp=acl",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -30,17 +30,17 @@
"retry-after" : "0",
"Content-Length" : "294",
"StatusCode" : "400",
- "x-ms-request-id" : "dd226022-4003-0028-0175-37b82d000000",
- "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:dd226022-4003-0028-0175-37b82d000000\nTime:2019-07-10T23:18:37.6694120Z00",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT",
+ "x-ms-request-id" : "ce25bf9e-3003-003e-4435-468657000000",
+ "Body" : "InvalidXmlDocument
XML specified is not syntactically valid.\nRequestId:ce25bf9e-3003-003e-4435-468657000000\nTime:2019-07-29T17:46:09.3848737Z00",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue265747a2/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue0184403a/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -48,15 +48,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd226034-4003-0028-1175-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT"
+ "x-ms-request-id" : "ce25bfb0-3003-003e-5535-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue265747a2",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue0184403a",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -64,9 +64,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd226043-4003-0028-2075-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:37 GMT"
+ "x-ms-request-id" : "ce25bfc1-3003-003e-6635-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:46:09 GMT"
}
} ],
- "variables" : [ "queue265747a2" ]
+ "variables" : [ "queue0184403a" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/updateMessage.json b/storage/client/queue/src/test/resources/session-records/updateMessage.json
index 46e184bda045c..bccdc36e82647 100644
--- a/storage/client/queue/src/test/resources/session-records/updateMessage.json
+++ b/storage/client/queue/src/test/resources/session-records/updateMessage.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue4236461c",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue16993c61",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd222c30-4003-0028-0f75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:02 GMT"
+ "x-ms-request-id" : "ce2594e7-3003-003e-7735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue4236461c/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue16993c61/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd222c40-4003-0028-1c75-37b82d000000",
- "Body" : "c3781181-9103-468e-b645-f6dbb100bd9cWed, 10 Jul 2019 23:18:02 GMTWed, 17 Jul 2019 23:18:02 GMTAgAAAAMAAAAAAAAAjQ/SuHU31QE=Wed, 10 Jul 2019 23:18:02 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:02 GMT",
+ "x-ms-request-id" : "ce2594fd-3003-003e-0935-468657000000",
+ "Body" : "a06eb742-1b3f-4432-8e48-5a4293a46cddMon, 29 Jul 2019 17:45:35 GMTMon, 05 Aug 2019 17:45:35 GMTAgAAAAMAAAAAAAAAdHTobDVG1QE=Mon, 29 Jul 2019 17:45:35 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue4236461c/messages?numofmessages=1&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue16993c61/messages?numofmessages=1&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,36 +48,36 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd222c62-4003-0028-3b75-37b82d000000",
- "Body" : "c3781181-9103-468e-b645-f6dbb100bd9cWed, 10 Jul 2019 23:18:02 GMTWed, 17 Jul 2019 23:18:02 GMTAgAAAAMAAAAAAAAAEAO9ynU31QE=Wed, 10 Jul 2019 23:18:32 GMT1test message",
- "Date" : "Wed, 10 Jul 2019 23:18:02 GMT",
+ "x-ms-request-id" : "ce259512-3003-003e-1c35-468657000000",
+ "Body" : "a06eb742-1b3f-4432-8e48-5a4293a46cddMon, 29 Jul 2019 17:45:35 GMTMon, 05 Aug 2019 17:45:35 GMTAgAAAAMAAAAAAAAArIHQfjVG1QE=Mon, 29 Jul 2019 17:46:05 GMT1test message",
+ "Date" : "Mon, 29 Jul 2019 17:45:35 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue4236461c/messages/c3781181-9103-468e-b645-f6dbb100bd9c?popreceipt=AgAAAAMAAAAAAAAAEAO9ynU31QE%3d&visibilitytimeout=1",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue16993c61/messages/a06eb742-1b3f-4432-8e48-5a4293a46cdd?popreceipt=AgAAAAMAAAAAAAAArIHQfjVG1QE%3d&visibilitytimeout=1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
"x-ms-version" : "2018-03-28",
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
- "x-ms-time-next-visible" : "Wed, 10 Jul 2019 23:18:04 GMT",
+ "x-ms-time-next-visible" : "Mon, 29 Jul 2019 17:45:36 GMT",
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd222c7f-4003-0028-5475-37b82d000000",
- "x-ms-popreceipt" : "AwAAAAMAAAAAAAAAZuN9uXU31QEBAAAA",
- "Date" : "Wed, 10 Jul 2019 23:18:02 GMT"
+ "x-ms-request-id" : "ce259529-3003-003e-3335-468657000000",
+ "x-ms-popreceipt" : "AwAAAAMAAAAAAAAAki2ObTVG1QEBAAAA",
+ "Date" : "Mon, 29 Jul 2019 17:45:35 GMT"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue4236461c/messages?peekonly=true",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue16993c61/messages?peekonly=true",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -86,17 +86,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd2230d0-4003-0028-1b75-37b82d000000",
- "Body" : "c3781181-9103-468e-b645-f6dbb100bd9cWed, 10 Jul 2019 23:18:02 GMTWed, 17 Jul 2019 23:18:02 GMT1updated test message",
- "Date" : "Wed, 10 Jul 2019 23:18:04 GMT",
+ "x-ms-request-id" : "ce2597a1-3003-003e-1335-468657000000",
+ "Body" : "a06eb742-1b3f-4432-8e48-5a4293a46cddMon, 29 Jul 2019 17:45:35 GMTMon, 05 Aug 2019 17:45:35 GMT1updated test message",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue4236461c/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue16993c61/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -104,15 +104,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2230e9-4003-0028-2e75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:04 GMT"
+ "x-ms-request-id" : "ce2597a8-3003-003e-1a35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue4236461c",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue16993c61",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -120,9 +120,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd223113-4003-0028-4f75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:04 GMT"
+ "x-ms-request-id" : "ce2597b2-3003-003e-2335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
} ],
- "variables" : [ "queue4236461c" ]
+ "variables" : [ "queue16993c61" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/updateMessageInvalidMessageId.json b/storage/client/queue/src/test/resources/session-records/updateMessageInvalidMessageId.json
index eae58afb9650c..7cb397e33e8f6 100644
--- a/storage/client/queue/src/test/resources/session-records/updateMessageInvalidMessageId.json
+++ b/storage/client/queue/src/test/resources/session-records/updateMessageInvalidMessageId.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue10019121",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue88495da1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd223139-4003-0028-6d75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:04 GMT"
+ "x-ms-request-id" : "ce2597c1-3003-003e-3235-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue10019121/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue88495da1/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd223159-4003-0028-0475-37b82d000000",
- "Body" : "e3dbec12-5e3c-47f4-abd9-fbdf6e44746dWed, 10 Jul 2019 23:18:05 GMTWed, 17 Jul 2019 23:18:05 GMTAgAAAAMAAAAAAAAA7UtBunU31QE=Wed, 10 Jul 2019 23:18:05 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:04 GMT",
+ "x-ms-request-id" : "ce2597cf-3003-003e-3f35-468657000000",
+ "Body" : "841d2ea5-a88c-4f63-81c2-deaa2d1e7881Mon, 29 Jul 2019 17:45:37 GMTMon, 05 Aug 2019 17:45:37 GMTAgAAAAMAAAAAAAAAsfpGbjVG1QE=Mon, 29 Jul 2019 17:45:37 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue10019121/messages?numofmessages=1&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue88495da1/messages?numofmessages=1&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd223169-4003-0028-1475-37b82d000000",
- "Body" : "e3dbec12-5e3c-47f4-abd9-fbdf6e44746dWed, 10 Jul 2019 23:18:05 GMTWed, 17 Jul 2019 23:18:05 GMTAgAAAAMAAAAAAAAAc5EqzHU31QE=Wed, 10 Jul 2019 23:18:35 GMT1test message",
- "Date" : "Wed, 10 Jul 2019 23:18:04 GMT",
+ "x-ms-request-id" : "ce2597d6-3003-003e-4635-468657000000",
+ "Body" : "841d2ea5-a88c-4f63-81c2-deaa2d1e7881Mon, 29 Jul 2019 17:45:37 GMTMon, 05 Aug 2019 17:45:37 GMTAgAAAAMAAAAAAAAAFs8tgDVG1QE=Mon, 29 Jul 2019 17:46:07 GMT1test message",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue10019121/messages/e3dbec12-5e3c-47f4-abd9-fbdf6e44746drandom?popreceipt=AgAAAAMAAAAAAAAAc5EqzHU31QE%3d&visibilitytimeout=1",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue88495da1/messages/841d2ea5-a88c-4f63-81c2-deaa2d1e7881random?popreceipt=AgAAAAMAAAAAAAAAFs8tgDVG1QE%3d&visibilitytimeout=1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -68,17 +68,17 @@
"retry-after" : "0",
"Content-Length" : "221",
"StatusCode" : "404",
- "x-ms-request-id" : "dd22317f-4003-0028-2775-37b82d000000",
- "Body" : "MessageNotFound
The specified message does not exist.\nRequestId:dd22317f-4003-0028-2775-37b82d000000\nTime:2019-07-10T23:18:05.3974051Z",
- "Date" : "Wed, 10 Jul 2019 23:18:04 GMT",
+ "x-ms-request-id" : "ce2597e1-3003-003e-5135-468657000000",
+ "Body" : "MessageNotFound
The specified message does not exist.\nRequestId:ce2597e1-3003-003e-5135-468657000000\nTime:2019-07-29T17:45:37.5375087Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue10019121/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue88495da1/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -86,15 +86,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd223195-4003-0028-3975-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:04 GMT"
+ "x-ms-request-id" : "ce2597e8-3003-003e-5835-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue10019121",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue88495da1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -102,9 +102,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd2231a9-4003-0028-4975-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "x-ms-request-id" : "ce2597f3-3003-003e-6335-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
} ],
- "variables" : [ "queue10019121" ]
+ "variables" : [ "queue88495da1" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/updateMessageInvalidPopReceipt.json b/storage/client/queue/src/test/resources/session-records/updateMessageInvalidPopReceipt.json
index f7795c878f27f..7ba7013a5bea2 100644
--- a/storage/client/queue/src/test/resources/session-records/updateMessageInvalidPopReceipt.json
+++ b/storage/client/queue/src/test/resources/session-records/updateMessageInvalidPopReceipt.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue41380e30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue34970dbd",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -12,15 +12,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd22326c-4003-0028-6c75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "x-ms-request-id" : "ce259851-3003-003e-3c35-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
}, {
"Method" : "POST",
- "Uri" : "https://sima.queue.core.windows.net/queue41380e30/messages?visibilitytimeout=0&messagettl=604800",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue34970dbd/messages?visibilitytimeout=0&messagettl=604800",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -29,17 +29,17 @@
"Server" : "Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0",
"retry-after" : "0",
"StatusCode" : "201",
- "x-ms-request-id" : "dd22329c-4003-0028-1475-37b82d000000",
- "Body" : "8900ad74-7404-4cd2-8b4b-41e70995dc1fWed, 10 Jul 2019 23:18:06 GMTWed, 17 Jul 2019 23:18:06 GMTAgAAAAMAAAAAAAAA/TyvunU31QE=Wed, 10 Jul 2019 23:18:06 GMT",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT",
+ "x-ms-request-id" : "ce259862-3003-003e-4b35-468657000000",
+ "Body" : "93f29456-5d5d-499b-ae10-06727f117127Mon, 29 Jul 2019 17:45:37 GMTMon, 05 Aug 2019 17:45:37 GMTAgAAAAMAAAAAAAAAsn+TbjVG1QE=Mon, 29 Jul 2019 17:45:37 GMT",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "GET",
- "Uri" : "https://sima.queue.core.windows.net/queue41380e30/messages?numofmessages=1&visibilitytimeout=30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue34970dbd/messages?numofmessages=1&visibilitytimeout=30",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"Transfer-Encoding" : "chunked",
@@ -48,17 +48,17 @@
"Cache-Control" : "no-cache",
"retry-after" : "0",
"StatusCode" : "200",
- "x-ms-request-id" : "dd2232d5-4003-0028-4575-37b82d000000",
- "Body" : "8900ad74-7404-4cd2-8b4b-41e70995dc1fWed, 10 Jul 2019 23:18:06 GMTWed, 17 Jul 2019 23:18:06 GMTAgAAAAMAAAAAAAAA+kWZzHU31QE=Wed, 10 Jul 2019 23:18:36 GMT1test message",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT",
+ "x-ms-request-id" : "ce25986b-3003-003e-5335-468657000000",
+ "Body" : "93f29456-5d5d-499b-ae10-06727f117127Mon, 29 Jul 2019 17:45:37 GMTMon, 05 Aug 2019 17:45:37 GMTAgAAAAMAAAAAAAAAePB6gDVG1QE=Mon, 29 Jul 2019 17:46:08 GMT1test message",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue41380e30/messages/8900ad74-7404-4cd2-8b4b-41e70995dc1f?popreceipt=AgAAAAMAAAAAAAAA%2bkWZzHU31QE%3drandom&visibilitytimeout=1",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue34970dbd/messages/93f29456-5d5d-499b-ae10-06727f117127?popreceipt=AgAAAAMAAAAAAAAAePB6gDVG1QE%3drandom&visibilitytimeout=1",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -68,17 +68,17 @@
"retry-after" : "0",
"Content-Length" : "444",
"StatusCode" : "400",
- "x-ms-request-id" : "dd2232ff-4003-0028-6d75-37b82d000000",
- "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:dd2232ff-4003-0028-6d75-37b82d000000\nTime:2019-07-10T23:18:06.1209188ZpopreceiptAgAAAAMAAAAAAAAA+kWZzHU31QE=randomInvalid pop receipt format",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT",
+ "x-ms-request-id" : "ce259875-3003-003e-5c35-468657000000",
+ "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:ce259875-3003-003e-5c35-468657000000\nTime:2019-07-29T17:45:38.0429748ZpopreceiptAgAAAAMAAAAAAAAAePB6gDVG1QE=randomInvalid pop receipt format",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue41380e30/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue34970dbd/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -86,15 +86,15 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd22331d-4003-0028-0a75-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "x-ms-request-id" : "ce259881-3003-003e-6735-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue41380e30",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue34970dbd",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -102,9 +102,9 @@
"retry-after" : "0",
"Content-Length" : "0",
"StatusCode" : "204",
- "x-ms-request-id" : "dd223333-4003-0028-2075-37b82d000000",
- "Date" : "Wed, 10 Jul 2019 23:18:05 GMT"
+ "x-ms-request-id" : "ce25988b-3003-003e-7135-468657000000",
+ "Date" : "Mon, 29 Jul 2019 17:45:37 GMT"
}
} ],
- "variables" : [ "queue41380e30" ]
+ "variables" : [ "queue34970dbd" ]
}
\ No newline at end of file
diff --git a/storage/client/queue/src/test/resources/session-records/updateMessageQueueDoesNotExist.json b/storage/client/queue/src/test/resources/session-records/updateMessageQueueDoesNotExist.json
index 9341ea4a79897..2a41c6476b092 100644
--- a/storage/client/queue/src/test/resources/session-records/updateMessageQueueDoesNotExist.json
+++ b/storage/client/queue/src/test/resources/session-records/updateMessageQueueDoesNotExist.json
@@ -1,10 +1,10 @@
{
"networkCallRecords" : [ {
"Method" : "PUT",
- "Uri" : "https://sima.queue.core.windows.net/queue77530b22/messages/doesn't?popreceipt=exist&visibilitytimeout=5",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue9938222c/messages/doesn't?popreceipt=exist&visibilitytimeout=5",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0",
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0",
"Content-Type" : "application/xml; charset=utf-8"
},
"Response" : {
@@ -14,17 +14,17 @@
"retry-after" : "0",
"Content-Length" : "415",
"StatusCode" : "400",
- "x-ms-request-id" : "dd2229e1-4003-0028-1475-37b82d000000",
- "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:dd2229e1-4003-0028-1475-37b82d000000\nTime:2019-07-10T23:18:01.7878412ZpopreceiptexistInvalid pop receipt format",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT",
+ "x-ms-request-id" : "ce2593c6-3003-003e-6735-468657000000",
+ "Body" : "InvalidQueryParameterValue
Value for one of the query parameters specified in the request URI is invalid.\nRequestId:ce2593c6-3003-003e-6735-468657000000\nTime:2019-07-29T17:45:34.2985235ZpopreceiptexistInvalid pop receipt format",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
}, {
"Method" : "DELETE",
- "Uri" : "https://sima.queue.core.windows.net/queue77530b22/messages",
+ "Uri" : "https://azstoragesdkaccount.queue.core.windows.net/queue9938222c/messages",
"Headers" : {
"x-ms-version" : "2018-03-28",
- "User-Agent" : "azsdk-java-storage-queue/1.0.0-SNAPSHOT 1.8.0_201; Windows 10 10.0"
+ "User-Agent" : "azsdk-java-azure-storage-queue/12.0.0-preview.1 1.8.0_201; Windows 10 10.0"
},
"Response" : {
"x-ms-version" : "2018-03-28",
@@ -33,11 +33,11 @@
"retry-after" : "0",
"Content-Length" : "217",
"StatusCode" : "404",
- "x-ms-request-id" : "dd2229fb-4003-0028-2a75-37b82d000000",
- "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:dd2229fb-4003-0028-2a75-37b82d000000\nTime:2019-07-10T23:18:01.8368763Z",
- "Date" : "Wed, 10 Jul 2019 23:18:01 GMT",
+ "x-ms-request-id" : "ce2593d5-3003-003e-7635-468657000000",
+ "Body" : "QueueNotFound
The specified queue does not exist.\nRequestId:ce2593d5-3003-003e-7635-468657000000\nTime:2019-07-29T17:45:34.3315541Z",
+ "Date" : "Mon, 29 Jul 2019 17:45:34 GMT",
"Content-Type" : "application/xml"
}
} ],
- "variables" : [ "queue77530b22" ]
+ "variables" : [ "queue9938222c" ]
}
\ No newline at end of file