File tree Expand file tree Collapse file tree 3 files changed +2
-20
lines changed Expand file tree Collapse file tree 3 files changed +2
-20
lines changed Original file line number Diff line number Diff line change 38
38
- ` Stop-AzStorageFileCopy `
39
39
* Migrated Get/List blob to always use 'Azure.Storage.Blobs'
40
40
- ` Get-AzStorageBlob `
41
+ * Fix create file sas failure with file object pipeline
42
+ - ` New-AzStorageFileSasToken `
41
43
42
44
## Version 4.9.0
43
45
* Supported to create or update Storage account with Azure Files Active Directory Domain Service Kerberos Authentication
Original file line number Diff line number Diff line change @@ -207,15 +207,5 @@ public override void ExecuteCmdlet()
207
207
WriteObject ( sasToken ) ;
208
208
}
209
209
}
210
-
211
- protected override IStorageFileManagement CreateChannel ( )
212
- {
213
- if ( this . Channel == null || ! this . ShareChannel )
214
- {
215
- this . Channel = new StorageFileManagement ( this . GetCmdletStorageContext ( ) ) ;
216
- }
217
-
218
- return this . Channel ;
219
- }
220
210
}
221
211
}
Original file line number Diff line number Diff line change @@ -135,15 +135,5 @@ public override void ExecuteCmdlet()
135
135
WriteObject ( sasToken ) ;
136
136
}
137
137
}
138
-
139
- protected override IStorageFileManagement CreateChannel ( )
140
- {
141
- if ( this . Channel == null || ! this . ShareChannel )
142
- {
143
- this . Channel = new StorageFileManagement ( this . GetCmdletStorageContext ( ) ) ;
144
- }
145
-
146
- return this . Channel ;
147
- }
148
138
}
149
139
}
You can’t perform that action at this time.
0 commit comments