We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dc4730 commit e2f6622Copy full SHA for e2f6622
src/Storage/Storage.Management/ChangeLog.md
@@ -27,6 +27,8 @@
27
- `New-AzStorageAccountSASToken`
28
- `New-AzStorageContainerSASToken`
29
- `New-AzStorageBlobSASToken`
30
+* Supported asynchronous blob copy run on new API version
31
+ - `Start-AzStorageBlobCopy`
32
33
## Version 4.3.0
34
* Supported download blob from managed disk account with Sas Uri and bearer token
src/Storage/Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs
@@ -300,11 +300,7 @@ public Hashtable Tag
300
301
protected override bool UseTrack2Sdk()
302
{
303
- if (this.BlobTag != null || this.TagCondition != null || this.DestTagCondition != null)
304
- {
305
- return true;
306
- }
307
- return base.UseTrack2Sdk();
+ return true;
308
}
309
310
private bool skipSourceChannelInit;
0 commit comments