Skip to content

Commit 3736b08

Browse files
authored
Renamed Azure.Storage.DataMovement.JobPlanModels to Models.JobPlan (Azure#35456)
1 parent 06ff313 commit 3736b08

27 files changed

+33
-32
lines changed

sdk/storage/Azure.Storage.DataMovement.Blobs/tests/Azure.Storage.DataMovement.Blobs.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<Compile Include="$(AzureStorageDataMovementTestSharedSources)DisposingLocalDirectory.cs" LinkBase="Shared\DataMovement" />
1515
</ItemGroup>
1616
<ItemGroup>
17-
<Compile Include="$(AzureStorageDataMovementSharedSources)..\JobPlanModels\*.cs" LinkBase="Shared\DataMovement\JobPlanModels" />
17+
<Compile Include="$(AzureStorageDataMovementSharedSources)..\Models\JobPlan\*.cs" LinkBase="Shared\DataMovement\JobPlanModels" />
1818
<Compile Include="$(AzureStorageDataMovementSharedSources)DataMovementExtensions.cs" LinkBase="Shared\DataMovement" />
1919
</ItemGroup>
2020
<ItemGroup>

sdk/storage/Azure.Storage.DataMovement/src/JobPartInternal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
using System.Threading.Tasks;
1010
using Azure.Core;
1111
using Azure.Storage.DataMovement.Models;
12-
using Azure.Storage.DataMovement.JobPlanModels;
1312
using System.Linq;
13+
using Azure.Storage.DataMovement.Models.JobPlan;
1414

1515
namespace Azure.Storage.DataMovement
1616
{

sdk/storage/Azure.Storage.DataMovement/src/JobPlanExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.IO;
66
using System.IO.MemoryMappedFiles;
77
using System.Threading.Tasks;
8-
using Azure.Storage.DataMovement.JobPlanModels;
8+
using Azure.Storage.DataMovement.Models.JobPlan;
99

1010
namespace Azure.Storage.DataMovement
1111
{

sdk/storage/Azure.Storage.DataMovement/src/LocalTransferCheckpointer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.Threading;
1010
using System.Threading.Tasks;
1111
using Azure.Core;
12-
using Azure.Storage.DataMovement.JobPlanModels;
12+
using Azure.Storage.DataMovement.Models.JobPlan;
1313

1414
namespace Azure.Storage.DataMovement
1515
{

sdk/storage/Azure.Storage.DataMovement/src/JobPlanModels/FolderPropertiesMode.cs renamed to sdk/storage/Azure.Storage.DataMovement/src/Models/JobPlan/FolderPropertiesMode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
namespace Azure.Storage.DataMovement.JobPlanModels
4+
namespace Azure.Storage.DataMovement.Models.JobPlan
55
{
66
/// <summary>
77
/// SMB Feature whether to preserve permissions on the folder

sdk/storage/Azure.Storage.DataMovement/src/JobPlanModels/JobChunkPlanBody.cs renamed to sdk/storage/Azure.Storage.DataMovement/src/Models/JobPlan/JobChunkPlanBody.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT License.
33
using System.Runtime.InteropServices;
44

5-
namespace Azure.Storage.DataMovement.JobPlanModels
5+
namespace Azure.Storage.DataMovement.Models.JobPlan
66
{
77
[StructLayout(LayoutKind.Sequential)]
88
internal struct JobChunkPlanBody

sdk/storage/Azure.Storage.DataMovement/src/JobPlanModels/JobPartDeleteSnapshotsOption.cs renamed to sdk/storage/Azure.Storage.DataMovement/src/Models/JobPlan/JobPartDeleteSnapshotsOption.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
namespace Azure.Storage.DataMovement.JobPlanModels
4+
namespace Azure.Storage.DataMovement.Models.JobPlan
55
{
66
/// <summary>
77
/// Required if the blob has associated snapshots. Specify one of the following two options:

sdk/storage/Azure.Storage.DataMovement/src/JobPlanModels/JobPartPermanentDeleteOption.cs renamed to sdk/storage/Azure.Storage.DataMovement/src/Models/JobPlan/JobPartPermanentDeleteOption.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
namespace Azure.Storage.DataMovement.JobPlanModels
4+
namespace Azure.Storage.DataMovement.Models.JobPlan
55
{
66
/// <summary>
77
/// Permanent Delete Options

sdk/storage/Azure.Storage.DataMovement/src/JobPlanModels/JobPartPlanBlockBlobTier.cs renamed to sdk/storage/Azure.Storage.DataMovement/src/Models/JobPlan/JobPartPlanBlockBlobTier.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
3-
namespace Azure.Storage.DataMovement.JobPlanModels
3+
4+
namespace Azure.Storage.DataMovement.Models.JobPlan
45
{
56
internal enum JobPartPlanBlockBlobTier
67
{

sdk/storage/Azure.Storage.DataMovement/src/JobPlanModels/JobPartPlanCredentialType.cs renamed to sdk/storage/Azure.Storage.DataMovement/src/Models/JobPlan/JobPartPlanCredentialType.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
3-
namespace Azure.Storage.DataMovement.JobPlanModels
3+
4+
namespace Azure.Storage.DataMovement.Models.JobPlan
45
{
56
internal enum JobPartPlanCredentialType
67
{

0 commit comments

Comments
 (0)