File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Common/Commands.Common.Storage/Adapters/ARM.Storage.4
ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 12
12
// limitations under the License.
13
13
// ----------------------------------------------------------------------------------
14
14
15
+ using Microsoft . Azure . Management . Storage ;
15
16
using Microsoft . WindowsAzure . Commands . Common . Storage ;
16
17
using Microsoft . Azure . Commands . Compute ;
17
- using Microsoft . Azure . Management . Storage ;
18
18
19
19
namespace Microsoft . Azure . Commands . Management . Storage . Models
20
20
{
Original file line number Diff line number Diff line change 12
12
// limitations under the License.
13
13
// ----------------------------------------------------------------------------------
14
14
15
- using Microsoft . Azure . Management . Storage ;
16
15
using Microsoft . WindowsAzure . Commands . Common . Storage ;
17
16
using System ;
18
17
using System . Collections . Generic ;
@@ -21,9 +20,9 @@ namespace Microsoft.Azure.Commands.Management.Storage.Models
21
20
{
22
21
public class ARMStorageService : IStorageService
23
22
{
24
- StorageAccount _account ;
23
+ Azure . Management . Storage . Models . StorageAccount _account ;
25
24
List < string > _authenticationKeys = new List < string > ( ) ;
26
- public ARMStorageService ( StorageAccount account ,
25
+ public ARMStorageService ( Azure . Management . Storage . Models . StorageAccount account ,
27
26
params string [ ] authenticationKeys )
28
27
{
29
28
_account = account ;
Original file line number Diff line number Diff line change @@ -627,4 +627,4 @@ function Normalize-Location
627
627
$outputLocation = $outputLocation -replace ' \s' , ' '
628
628
$outputLocation = $outputLocation -replace ' -' , ' '
629
629
$outputLocation = $outputLocation -replace ' _' , ' '
630
- }
630
+ }
You can’t perform that action at this time.
0 commit comments